/* Kontener centrujący na całej stronie */
.reset-password-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #fff; /* Jasne tło strony dla kontrastu */
}

/* Karta formularza */
.reset-password-card {
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 4px; /* Subtelne zaokrąglenie */
    text-align: left;
}

/* Tytuł */
.form-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

/* Instrukcja pod tytułem */
.form-instruction {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Grupowanie inputów */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    background-color: #f9f9f9;
    box-sizing: border-box; /* Ważne, by padding nie rozpychał inputa */
    transition: border-color 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: #c00;
}

/* Przycisk akcji */
.btn-submit {
    width: 100%;
    background-color: #cc0000; /* Czerwień ze zdjęcia */
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #a00000;
}

/* Link powrotu */
.form-footer {
    text-align: center;
    margin-top: 25px;
}

.form-footer a {
    color: #1d1d1f;
    text-decoration: underline;
    font-size: 14px;
}

.form-footer a:hover {
    color: #cc0000;
}

/* Alerty */
.alert {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-danger { background: #fee; color: #c00; border: 1px solid #fcc; }
.alert-warning { background: #fffde7; color: #856404; border: 1px solid #ffeeba; }