/* 🔐 Formularz odzyskiwania hasła – styl spójny z logowaniem i rejestracją */

.auth-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #1c1c2b;
    min-height: 80vh;
    color: #fff;
}

.auth-form .container {
    background: #232334;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.auth-form h1 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #00d9ff;
}

.auth-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form input {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #444;
    background: #2a2a3d;
    color: #fff;
    border-radius: 10px;
}

.auth-form button {
    background-color: #00d9ff;
    color: #000;
    font-weight: bold;
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.auth-form button:hover {
    background-color: #00c4e2;
}

.auth-form .errors,
.auth-form .info,
.auth-form .success {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.auth-form .errors {
    background-color: #6c1e1e;
    color: #fff;
}

.auth-form .info {
    background-color: #1e3d6c;
    color: #fff;
}

.auth-form .success {
    background-color: #1e6c3f;
    color: #fff;
}

.auth-form p {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.auth-form a {
    color: #00d9ff;
    text-decoration: none;
}

.auth-form a:hover {
    text-decoration: underline;
}