/* =============================
   Register Page Styles
   ============================= */

/* Particles / Background Overlay */
.background {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #0f0f0f);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}
.glass-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 12, 9, 0.6);
    backdrop-filter: blur(15px);
    z-index: -1;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =============================
   Register Card
   ============================= */
.register-card {
  /* background: rgba(180, 136, 61, 0.9); */
    backdrop-filter: blur(25px);
    border:1px solid rgba(193,157,96,0.3);
    border-radius:24px;
    padding:60px 50px;
    /* box-shadow:0 25px 50px rgba(139,105,20,0.4); */
    position:relative; overflow:hidden;
    transform: scale(0.95);
    animation: slideIn 0.8s ease-out forwards;
}
@keyframes slideIn { to { transform: scale(1); } }
.checkout__area {
    background-color: #fff !important;
}
.register-card::before, .register-card::after {
    content:'';
    position:absolute; border-radius:50%; z-index:-1;
}
.register-card::before {
    top:-50%; right:-50%;
    width:100%; height:100%;
    /* background:linear-gradient(45deg, rgba(212,175,55,0.3), transparent);
     animation: rotate 10s linear infinite; */
}
.register-card::after {
    bottom:-50%; left:-50%;
    width:100%; height:100%;
    /* background:linear-gradient(45deg, rgba(230,192,120,0.3), transparent);
    animation: rotate 15s linear infinite reverse; */
}
@keyframes rotate { from {transform:rotate(0deg);} to {transform:rotate(360deg);} }
/* Title */
.register-card .title {
    font-size:32px; font-weight:700;
    background: linear-gradient(135deg, #b8860b, #8b6914, #c19d60);
    background-clip:text; -webkit-background-clip:text; -webkit-text-fill-color:transparent;
    /* animation: glow 2s ease-in-out infinite alternate; */
}
@keyframes glow { from {filter: drop-shadow(0 0 20px rgba(212,175,55,0.5));} to {filter: drop-shadow(0 0 30px rgba(230,192,120,0.5));} }

/* =============================
   Inputs
   ============================= */
.form-grp {
    margin-bottom: 20px;
    position: relative;
}

.register-card input,
.register-card textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}
.register-card textarea {
    height: 80px;
    resize: none;
}

.register-card input:focus,
.register-card textarea:focus {
    border-color: #b8860b;
    box-shadow: 0 0 8px rgba(212,175,55,0.5);
    outline: none;
}

/* Labels */
.register-card label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #000;
}

/* =============================
   Password Eye Icon
   ============================= */
.password-container {
    position: relative;
}
.password-container .eye-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}
.password-container .eye-icon:hover {
    color: #b8860b;
}

/* =============================
   Buttons
   ============================= */
.register-card .btn-two {
    background: linear-gradient(135deg, #8b6914, #d4af37);
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    /* border: 1px solid black; */
    box-shadow: 0 4px 10px rgba(212,175,55,0.4);
}
.register-card .btn-two:hover {
    background: linear-gradient(135deg, #7a5a12, #a47c1b);
    box-shadow: 0 6px 16px rgba(230,192,120,0.6);
}

/* =============================
   Links
   ============================= */
.register-card a {
    font-size: 14px;
    font-weight: 600;
    color: #8b6914;
    text-decoration: none;
}
.register-card a:hover {
    text-decoration: underline;
    color: #d4af37;
}

/* =============================
   Responsive
   ============================= */
@media (max-width: 768px) {
    .register-card {
        padding: 20px;
        margin: 20px;
    }
    .register-card .title {
        font-size: 24px;
    }
}
