﻿.forgot-password-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(30,30,30,0.13);
    padding: 2.5rem 2rem;
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20vh;
}

    .forgot-password-container h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1.4rem;
        color: #1e1e1e;
        text-align: center;
    }

    .forgot-password-container form {
        margin-bottom: 5vh;
    }

    .forgot-password-container .btn-primary {
        background-color: #c4b8ad;
        border: none;
        font-weight: 600;
        transition: background 0.18s;
    }

        .forgot-password-container .btn-primary:hover {
            background-color: #aa9e95;
        }

    .forgot-password-container a {
        text-align: center;
        display: block;
        margin-top: 1.2rem;
        color: #846859;
        font-weight: 600;
        text-decoration: underline;
        cursor: pointer;
        transition: color 0.16s;
    }

        .forgot-password-container a:hover {
            color: #c4b8ad;
        }

@media (max-width: 480px) {
    .forgot-password-container {
        padding: 2rem 1rem;
        max-width: 96vw;
    }
}
