/* ============================================================================
 * AOB Password-Reset Flow — Wave 87BW.23
 * Avatar-Gradient (#90a7ac → #5e7d83), Gold-Accent (#dabe92/#c4a878)
 * ========================================================================= */

.aob-pwreset-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(144, 167, 172, .08), transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(218, 190, 146, .10), transparent 55%),
        linear-gradient(180deg, #faf8f5 0%, #f5f1ea 100%);
    padding: 60px 16px 80px;
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.aob-pwreset-wrap {
    width: 100%;
    max-width: 1040px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr);
    gap: 28px;
    align-items: start;
}

@media (max-width: 860px) {
    .aob-pwreset-wrap { grid-template-columns: 1fr; gap: 18px; }
}

/* ---- Card ----------------------------------------------------------- */
.aob-pwreset-card {
    background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 100%);
    border-radius: 22px;
    padding: 44px 38px 36px;
    box-shadow:
        0 30px 60px -20px rgba(94, 125, 131, .22),
        0 12px 25px -10px rgba(94, 125, 131, .12),
        0 0 0 1px rgba(218, 190, 146, .14) inset;
    position: relative;
    overflow: hidden;
}
.aob-pwreset-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(144, 167, 172, .12) 0%, transparent 70%);
    pointer-events: none;
}

.aob-pwreset-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #90a7ac 0%, #7e9499 50%, #5e7d83 100%);
    color: #ffffff;
    margin: 0 auto 22px;
    box-shadow:
        0 12px 28px -10px rgba(94, 125, 131, .55),
        0 0 0 6px rgba(144, 167, 172, .08);
    position: relative;
    z-index: 2;
}
.aob-pwreset-icon-mail {
    background: linear-gradient(135deg, #dabe92 0%, #c4a878 100%);
    box-shadow:
        0 12px 28px -10px rgba(196, 168, 120, .55),
        0 0 0 6px rgba(218, 190, 146, .12);
}

.aob-pwreset-title {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: .005em;
    color: #2b2f33;
    margin: 0 0 10px;
    position: relative;
    z-index: 2;
}

.aob-pwreset-sub {
    text-align: center;
    color: #7a7e83;
    font-size: 15px;
    line-height: 1.6;
    max-width: 460px;
    margin: 0 auto 4px;
    position: relative;
    z-index: 2;
}

/* ---- Form ----------------------------------------------------------- */
.aob-pwreset-form {
    margin-top: 26px;
    position: relative;
    z-index: 2;
}

.aob-pwreset-field label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    color: #5e7d83;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.aob-pwreset-field input {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #e5dccb;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: #2b2f33;
    transition: border-color .2s ease, box-shadow .2s ease;
    box-sizing: border-box;
}
.aob-pwreset-field input:focus {
    outline: none;
    border-color: #90a7ac;
    box-shadow: 0 0 0 4px rgba(144, 167, 172, .14);
}

/* ---- OTP-Input besonders gross + cool ------------------------------- */
.aob-pwreset-otp {
    text-align: center;
    font-family: Menlo, Consolas, Monaco, monospace;
    font-size: 32px !important;
    letter-spacing: .35em;
    font-weight: 700;
    color: #5e7d83 !important;
    padding: 18px 14px !important;
    background: linear-gradient(180deg, #fdfbf8 0%, #f7f3ec 100%) !important;
    border: 2px solid #dabe92 !important;
    border-radius: 14px !important;
}
.aob-pwreset-otp::placeholder {
    color: #d0c4ad;
    letter-spacing: .35em;
}
.aob-pwreset-otp:focus {
    border-color: #c4a878 !important;
    box-shadow: 0 0 0 4px rgba(218, 190, 146, .25) !important;
}

/* ---- Button --------------------------------------------------------- */
.aob-pwreset-btn {
    background: linear-gradient(135deg, #90a7ac 0%, #7e9499 50%, #5e7d83 100%) !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 14px !important;
    padding: 16px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: .03em !important;
    cursor: pointer;
    box-shadow:
        0 12px 28px -10px rgba(94, 125, 131, .55),
        0 0 0 1px rgba(94, 125, 131, .15) inset;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}
.aob-pwreset-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow:
        0 16px 34px -10px rgba(94, 125, 131, .65),
        0 0 0 1px rgba(94, 125, 131, .2) inset;
}
.aob-pwreset-btn:active {
    transform: translateY(0);
}
.aob-pwreset-arrow {
    display: inline-block;
    transition: transform .2s ease;
    font-size: 17px;
}
.aob-pwreset-btn:hover .aob-pwreset-arrow {
    transform: translateX(4px);
}

/* ---- Footer-Links --------------------------------------------------- */
.aob-pwreset-foot {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #7a7e83;
    position: relative;
    z-index: 2;
}
.aob-pwreset-foot a {
    color: #5e7d83;
    text-decoration: none;
    font-weight: 500;
    transition: color .15s ease;
}
.aob-pwreset-foot a:hover {
    color: #2b2f33;
    text-decoration: underline;
}
.aob-pwreset-divider {
    margin: 0 10px;
    color: #c8c0b0;
}

/* ---- Aside (Step-Liste) -------------------------------------------- */
.aob-pwreset-aside {
    background: linear-gradient(180deg, rgba(144, 167, 172, .04) 0%, rgba(218, 190, 146, .06) 100%);
    border-radius: 22px;
    padding: 32px 26px;
    border: 1px solid rgba(218, 190, 146, .25);
}

.aob-pwreset-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
    transition: opacity .2s ease;
}
.aob-pwreset-step:last-of-type { margin-bottom: 18px; }

.aob-pwreset-step-num {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #7a7e83;
    border: 1.5px solid #e5dccb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: Menlo, Consolas, monospace;
    box-shadow: 0 4px 10px -3px rgba(94, 125, 131, .12);
}
.aob-pwreset-step strong {
    color: #2b2f33;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}
.aob-pwreset-step p {
    color: #7a7e83;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.aob-pwreset-step-active .aob-pwreset-step-num {
    background: linear-gradient(135deg, #90a7ac 0%, #5e7d83 100%);
    color: #ffffff;
    border-color: #5e7d83;
    box-shadow:
        0 6px 14px -3px rgba(94, 125, 131, .45),
        0 0 0 4px rgba(144, 167, 172, .15);
}
.aob-pwreset-step-done .aob-pwreset-step-num {
    background: linear-gradient(135deg, #dabe92 0%, #c4a878 100%);
    color: #ffffff;
    border-color: #c4a878;
    box-shadow: 0 4px 10px -3px rgba(196, 168, 120, .35);
}
.aob-pwreset-step-done strong { color: #5e7d83; }

/* ---- Info-Box im Aside --------------------------------------------- */
.aob-pwreset-info {
    margin-top: 22px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .65);
    border-radius: 12px;
    border: 1px solid rgba(218, 190, 146, .35);
    font-size: 13px;
    color: #5e7d83;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.aob-pwreset-info strong { color: #2b2f33; }

/* ---- Login-Page „Passwort vergessen"-Link -------------------------- */
.aob-login-forgot {
    font-size: 12px;
    font-weight: 500;
    color: #5e7d83;
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .15s ease;
}
.aob-login-forgot:hover {
    color: #2b2f33;
    text-decoration: underline;
}

/* ---- Mobile-Tuning ------------------------------------------------- */
@media (max-width: 520px) {
    .aob-pwreset-card { padding: 32px 22px 28px; border-radius: 18px; }
    .aob-pwreset-title { font-size: 24px; }
    .aob-pwreset-otp { font-size: 26px !important; letter-spacing: .25em; }
    .aob-pwreset-icon { width: 66px; height: 66px; }
}
