/* ===== СТРАНИЦА ВОССТАНОВЛЕНИЯ ПАРОЛЯ ===== */
.auth-container {
    max-width: 480px;
    margin: 4rem auto;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 0 120px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.auth-container h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.auth-container p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.auth-container form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-container label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2c3e50;
    text-align: left;
    display: block;
    margin-bottom: 0.2rem;
}

.auth-container input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.auth-container input[type="email"]:focus {
    border-color: #6c5ce7;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.auth-container .error-message {
    margin-top: 0.3rem;
    font-size: 0.9rem;
    color: #dc3545;
    text-align: left;
}

.auth-container .error-message p {
    margin: 0;
    color: #dc3545;
}

.auth-container .submit-btn {
    background: #6c5ce7;
    color: #fff;
    border: none;
    padding: 0.8rem 0;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    width: 100%;
}

.auth-container .submit-btn:hover {
    background: #5a4bd1;
    transform: translateY(-1px);
}

.auth-container .submit-btn:active {
    transform: translateY(0);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 576px) {
    .auth-container {
        margin: 2rem 1rem;
        padding: 1.8rem 1.2rem;
        border-radius: 24px;
    }

    .auth-container h1 {
        font-size: 1.6rem;
    }

    .auth-container input[type="email"] {
        font-size: 0.95rem;
        padding: 0.65rem 0.9rem;
    }

    .auth-container .submit-btn {
        font-size: 1rem;
        padding: 0.7rem 0;
    }
}.auth-container input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 12px;
    font-size: 1rem;
    box-sizing: border-box;
}