.reset-page {
    padding-bottom: 20px;
}
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.step-indicator span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eef3fa;
    color: #758096;
    font-weight: 700;
}
.step-indicator span.active {
    background: #1474e9;
    color: #fff;
}
.step-indicator i {
    width: 42px;
    height: 2px;
    background: #e3e8ef;
}
.channel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.channel-card {
    border: 1px solid #e0e4eb;
    border-radius: 16px;
    padding: 16px;
    text-align: left;
    background: #fff;
    color: #172033;
    cursor: pointer;
}
.channel-card.active {
    border-color: #1474e9;
    background: #f4f8ff;
    box-shadow: 0 0 0 3px rgba(20, 116, 233, 0.07);
}
.channel-card strong {
    display: block;
    font-size: 15px;
}
.channel-card small {
    display: block;
    color: #697386;
    font-size: 11px;
    margin-top: 4px;
    line-height: 1.3;
}
.reset-step {
    display: none;
}
.reset-step.active {
    display: block;
}
.reset-input {
    margin-top: 0;
}
.plain-icon {
    color: #1474e9;
    font-weight: 800;
}
.reset-help {
    text-align: center;
    color: #697386;
    font-size: 14px;
    margin-bottom: 18px;
}
.otp-wrap {
    display: grid;
    grid-template-columns: repeat(6, 44px);
    justify-content: center;
    gap: 9px;
    width: 100%;
    margin: 0 auto;
}
.otp-input {
    box-sizing: border-box;
    width: 44px;
    height: 54px;
    border: 1px solid #dfe5ed;
    border-radius: 12px;
    text-align: center;
    font-size: 23px;
    font-weight: 800;
    color: #0b1738;
    outline: none;
}
@media (max-width: 360px) {
    .otp-wrap {
        grid-template-columns: repeat(6, 40px);
        gap: 7px;
    }
    .otp-input {
        width: 40px;
        height: 50px;
    }
}
.otp-input:focus {
    border-color: #1474e9;
    box-shadow: 0 0 0 3px rgba(20, 116, 233, 0.08);
}
.text-button {
    display: block;
    margin: 14px auto 0;
    color: #096ce3;
    font-weight: 650;
    cursor: pointer;
}
.password-rule {
    font-size: 12px;
    color: #697386;
    margin: 8px 2px;
}
.password-toggle {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: #172033;
    padding: 8px 12px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.password-toggle:focus-visible {
    outline: 2px solid #1474e9;
    outline-offset: 2px;
    border-radius: 8px;
}
@media (prefers-color-scheme: dark) {
    .password-toggle { color: #fff; }
}
.reset-message {
    display: none;
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    text-align: center;
}
.reset-message.show {
    display: block;
}
.reset-message.error {
    background: #fff1f0;
    color: #b42318;
}
.reset-message.success {
    background: #ecfdf3;
    color: #027a48;
}
