/* Premium Forgot Password CSS */

#forgot-password-root {
    min-height: calc(100vh - 160px);
    /* Subtract Header height */
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../../images/shop-banner.png') center/cover no-repeat fixed;
    position: relative;
    font-family: 'Poppins', sans-serif;
    padding: 40px 20px;
}

#forgot-password-root::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

#forgot-password-root .container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

#forgot-password-root h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 20px;
    font-weight: 700;
}

#forgot-password-root .input-box {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
    text-align: left;
}

#forgot-password-root .input-box input {
    width: 100%;
    padding: 12px 15px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ccc;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: 0.3s;
    border-radius: 0;
}

#forgot-password-root .input-box label {
    position: absolute;
    top: 12px;
    left: 15px;
    font-size: 0.95rem;
    color: #777;
    pointer-events: none;
    transition: 0.3s;
}

#forgot-password-root .input-box input:focus~label,
#forgot-password-root .input-box input:not(:placeholder-shown)~label {
    top: -10px;
    left: 0;
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 600;
}

#forgot-password-root .input-box input:focus,
#forgot-password-root .input-box input:not(:placeholder-shown) {
    border-bottom-color: #d4af37;
}

#forgot-password-root .btn {
    width: 100%;
    padding: 15px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

#forgot-password-root .btn:hover {
    background: #d4af37;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

#forgot-password-root .links {
    margin-top: 25px;
}

#forgot-password-root .links a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

#forgot-password-root .links a:hover {
    color: #f15406;
}