.header .fr {
    height: 100%;
    display: flex;
}

.header .fr .user-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .fr .user-box .user-box__content {
    color: #0f2a4a;
    font-size: 15px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 8px;
    cursor: pointer;
}
.header .fr .user-box .user-box__content span {
    display: none;
    visibility: hidden;
}
.header .fr .user-box.un-in-log .user-box__content span {
    display: block;
    visibility: visible;
}

.header .fr .user-box .drop-down {
    width: max-content;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(31, 31, 31, .1);
    padding: 10px 20px;
    opacity: 0;
    transform: translate(0, -10%);
    visibility: hidden;
    transition: .3s;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
}

.header .fr .user-box:hover .drop-down {
    opacity: 1;
    transform: translate(0, 0);
    visibility: visible;
    z-index: 1;
}

.header .fr .user-info__count {
    font-size: 20px;
    color: #0F2A4A;
    padding-bottom: 8px;
    border-bottom: 1px solid #e4e4e4;
}

.header .fr .drop-down .line {
    text-align: center;
    padding: 8px 0;
    cursor: pointer;
}

.primary-btn {
    width: 100%;
    height: 64px;
    border: none;
    border-radius: 999px;
    background: #0F2A4A;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.primary-btn:active {
    transform: scale(1.05);
}

.popup {
    position: fixed;
    inset: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.popup.visible {
    opacity: 1;
    visibility: visible;
}

.popup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: .2s ease-in;
    transform-origin: center;
    z-index: 999;
}

.popup.visible .popup-content {
    transform: translate(-50%, -50%) scale(1);
}

.dialog {
    width: 540px;
    max-width: calc(100vw - 40px);
    text-align: center;
    background: #fff;
    padding: clamp(24px, calc(70 / var(--vw)),70px) clamp(12px, calc(40 / var(--vw)),40px);
}

.dialog-statu__icon {
    --l: clamp(48px, calc(80 / var(--vw)),80px);
    width: var(--l);
    height: var(--l);
    border-radius: 50%;
    background-color: #909399;
}

.dialog-statu__icon.success {
    background: #159862;
}

.dialog-statu__icon.warn {
    background: #e6a23c;
}

.dialog-statu__icon.danger {
    background: #f56c6c;
}

.dialog-statu__icon img {
    height: 60%;
}

.dialog-title {
    color: #000;
    font-size: clamp(20px, calc(24 / var(--vw)),24px);
    font-weight: bold;
    margin-top: clamp(12px, calc(30 / var(--vw)),30px);
}

.dialog-desc {
    font-size: 18px;
    color: #666;
    margin-top: 14px;
}

.dialog-footer .primary-btn {
    margin-top: 50px;
}

.dialog-footer .register-box {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: #666;
}

.register-box a {
    color: #00529A;
    text-decoration: none;
    font-weight: 500;
}

.form {
    width: 100%;
    margin: 0 auto;
}

.form-item {
    position: relative;
}

.form-item__label {
    font-size: clamp(16px, calc(18 / var(--vw)), 18px);
}

.form-item+.form-item {
    margin-top: 20px;
}

.form-item__wrapper {
    width: 100%;
    height: 60px;
    padding: 0 10px 0 clamp(16px, calc(22 / var(--vw)), 22px);
    border-radius: 999px;
    background: #f3f4f6;
    border: 1px solid transparent;
}

.form-item.error .form-item__wrapper {
    border-color: red;
}

.form-item__content {
    height: 100%;
}

.form-item__error {
    font-size: 12px;
    color: red;
}

.form-item__inner {
    color: #111827;
    font-size: 16px;
    height: 100%;
    border: none;
    outline: none;
    flex: 1 0 0;
    background: transparent;
    padding: 0 12px;
}

.form-item__inner::placeholder {
    color: #9ca3af;
}

.form-submit__btn {
    width: 100%;
    height: clamp(48px, calc(64 / var(--vw)), 64px);
    margin-top: clamp(20px, calc(34 / var(--vw)), 34px);
    border: none;
    border-radius: 999px;
    background: var(--color-1);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.form-submit__btn:active {
    transform: scale(1.05);
}

.dialog-main .form {
    margin-top: 16px;
}

.form-submit__btn {
    margin-top: 30px;
}

@media screen and (max-width: 1200px) {
    .H100 .header .fr {
        display: block;
        position: absolute;
        top: 0;
        right: 50px;
    }
    .H100 .header .fr >* {
        display: none;
    }

    .H100 .header .fr .user-box {
        height: 100%;
        display: flex;
    }
}

@media screen and (max-width: 750px) {
    .dialog-desc {
        font-size: 16px;
    }
}