.forgetPwdPage {
    width: 1440px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 70px + 32px */
    min-height: calc(100vh - 102px);
    margin: 16px 0;
    border-radius: 8px;
}

.forgetPwdPage .card{
    width: 440px;
}

.forgetPwdPage .card__title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #121315;
}

.forgetPwdPage .card__subtitle {
    margin-top: 8px;
    font-size: 14px;
    color: #7F7D83;
    text-align: center;
}

/* 步骤指示器 */
.forgetPwdPage .steps {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 54px 0;
}

.forgetPwdPage .steps__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.forgetPwdPage .steps__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    background: #e8e8ef;
    color: #999;
    transition: all 0.3s;
}

.forgetPwdPage .steps__label {
    font-size: 12px;
    color: #999;
    transition: color 0.3s;
}

.forgetPwdPage .steps__item--active .steps__num {
    background: #0777F7;
    color: #fff;
}

.forgetPwdPage .steps__item--active .steps__label {
    color: #667eea;
    font-weight: 500;
}

.forgetPwdPage .steps__item--done .steps__num {
    background: #52c41a;
    color: #fff;
}

.forgetPwdPage .steps__item--done .steps__label {
    color: #52c41a;
}

.forgetPwdPage .steps__line {
    width: 60px;
    height: 2px;
    background: #e8e8ef;
    margin: 0 12px;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.forgetPwdPage .steps__line--active {
    background: #667eea;
}

/* 表单 */
.forgetPwdPage .form--hidden {
    display: none !important;
}

.forgetPwdPage .form-group {
    margin-bottom: 32px;
}

.forgetPwdPage .my_form_input{
    padding-right: 32px!important;
}

.forgetPwdPage ._icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}

.forgetPwdPage ._icon.active {
    display: inline-block;
}

.forgetPwdPage .form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.forgetPwdPage .form-input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.forgetPwdPage .form-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.forgetPwdPage .form-input.is-error {
    border-color: #ff4d4f;
}

.forgetPwdPage .form-input.is-error:focus {
    box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.15);
}

.forgetPwdPage .form-error {
    display: block;
    min-height: 20px;
    margin-top: 4px;
    font-size: 12px;
    color: #ff4d4f;
}

.forgetPwdPage .input-row {
    display: flex;
    gap: 10px;
}

.forgetPwdPage .input-row .form-input {
    flex: 1;
}

/* 按钮 */
.forgetPwdPage .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    white-space: nowrap;
}

.forgetPwdPage .btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.forgetPwdPage .btn--primary {
    background: #2080F6;
    color: #fff;
}

.forgetPwdPage .btn--primary:hover:not(:disabled) {
    background: #2080F6;
}

.forgetPwdPage .btn--outline {
    background: #fff;
    color: #2080F6;
    border: 1px solid #2080F6;
    min-width: 110px;
}

.forgetPwdPage .btn--outline:hover:not(:disabled) {
    background: #d3e7ff;
}

.forgetPwdPage .btn--ghost {
    background: #f5f5f5;
    color: #666;
}

.forgetPwdPage .btn--ghost:hover:not(:disabled) {
    background: #ebebeb;
}

.forgetPwdPage .btn--block {
    width: 100%;
}

.forgetPwdPage .form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.forgetPwdPage .form-actions .btn {
    flex: 1;
}

/* 成功面板 */
.forgetPwdPage .success-panel {
    text-align: center;
    padding: 20px 0;
}

.forgetPwdPage .success-panel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f6ffed;
    color: #52c41a;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
}

.forgetPwdPage .success-panel__title {
    font-size: 16px;
    color: #0A090B;
    margin-bottom: 8px;
}

.forgetPwdPage .success-panel__text {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.forgetPwdPage .my_form_sty ._form_item ._form_label{
    width: 56px!important;
}

@media (max-width: 480px) {
    .card {
        padding: 28px 20px;
    }

    .input-row {
        flex-direction: column;
    }

    .btn--outline {
        width: 100%;
    }
}
