.password-reset-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.password-reset-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.45rem 0.85rem;
    border: 1px solid #d7e7db;
    border-radius: 999px;
    background: #f7faf8;
    color: #4b5563;
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
}

.password-reset-step.current {
    border-color: #4a9452;
    background: #edf7ef;
    color: #1f4f2b;
}

.password-reset-step.complete {
    border-color: #c2dcc8;
    background: #f2faf4;
    color: #2f6b39;
}

.password-reset-helper {
    color: #6b7280;
    line-height: 1.6;
}

.password-reset-or-divider {
    position: relative;
    margin: 0.35rem 0 1rem;
    text-align: center;
}

.password-reset-or-divider::before {
    content: '';
    position: absolute;
    inset: 50% 0 auto;
    border-top: 1px solid #d7e7db;
}

.password-reset-or-divider span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.8rem;
    background: #ffffff;
    color: #6b7280;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.password-reset-contact-grid {
    display: grid;
    gap: 0.85rem;
}

.password-reset-contact-card {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.05rem;
    border: 1px solid #d7e7db;
    border-radius: 1rem;
    background: linear-gradient(180deg, #f7fcf8 0%, #eef7f0 100%);
    text-align: left;
}

.password-reset-contact-card strong {
    color: #16331d;
    font-size: 1rem;
}

.password-reset-contact-label {
    color: #2f6b39;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.password-reset-method-grid {
    display: grid;
    gap: 0.85rem;
}

.password-reset-method-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.password-reset-method-option {
    display: grid;
    gap: 0.35rem;
    width: 100%;
    padding: 1rem 1.05rem;
    border: 1px solid #d7e7db;
    border-radius: 1rem;
    background: #ffffff;
    color: #1f2937;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.password-reset-method-option:hover {
    border-color: #9fc9ab;
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
    transform: translateY(-1px);
}

.password-reset-method-input:checked + .password-reset-method-option {
    border-color: #4a9452;
    background: linear-gradient(180deg, #f3fbf5 0%, #ebf7ee 100%);
    box-shadow: 0 0 0 0.18rem rgba(74, 148, 82, 0.16);
}

.password-reset-method-title {
    color: #16331d;
    font-size: 1rem;
    font-weight: 800;
}

.password-reset-method-detail {
    color: #4b5563;
    line-height: 1.5;
}

.password-reset-submit {
    min-height: 50px;
    border-radius: 0.85rem;
    font-weight: 700;
}

.password-reset-guidelines {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1.1rem;
    border: 1px solid #d7e7db;
    border-radius: 1rem;
    background: linear-gradient(180deg, #f7fcf8 0%, #eef7f0 100%);
    color: #45604a;
    font-size: 0.92rem;
}

.password-reset-guidelines-title {
    color: #16331d;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.password-reset-guidelines span {
    display: block;
}

@media (max-width: 576px) {
    .password-reset-steps {
        gap: 0.45rem;
    }

    .password-reset-step {
        width: 100%;
    }

    .password-reset-method-option,
    .password-reset-contact-card {
        padding: 0.9rem;
    }
}
