/* 基础重置 */
.page{
    background-color: var(--primary-bg);
}
/* 页面容器 */
.login .body {
    max-width: 100%;
    min-height: 100vh;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 品牌标识区 */
.lg-t {
    text-align: center;
    margin-bottom: 48px;
}

.lg-t label:first-child {
    display: block;
    font-size: 16px;
    color: #6c757d;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.lg-t label:nth-child(2) {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff6b4a 0%, #ff8e53 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin: 0 4px;
}

/* 表单容器 */
.sign_login {
    border-radius: 20px;
    padding: 32px 24px;
}

/* 选项卡切换 */
.login .chose {
    display: flex;
    margin-bottom: 28px;
    position: relative;
}

.chose-item1, .chose-item2 {
    flex: 1;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #adb5bd;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.login .active-chose {
    color: #212529;
}

.login .chose .active-chose::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6b4a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/*.login .chose.email-active::after {*/
/*    transform: translateX(0);*/
/*}*/

/*.login .chose.phone-active::after {*/
/*    transform: translateX(100%);*/
/*}*/

/* 输入框样式 */
.uilist_div {
    height: 56px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 0 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.uilist_div:focus-within {
    border-color: #ff6b4a;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
}

.uilist_div i {
    font-size: 20px;
    color: #adb5bd;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.uilist_div:focus-within i {
    color: #ff6b4a;
}

input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    color: #212529;
    height: 100%;
}

input::placeholder {
    color: #adb5bd;
}

.eye {
    cursor: pointer;
    color: #adb5bd;
    font-size: 20px;
    transition: all 0.3s ease;
}

.eye:hover {
    color: #6c757d;
}

/* 登录按钮 */
.login_btn {
    margin-top: 32px;
}

.login_btn a {
    display: flex;
    width: 100%;
    height: 56px;
    background: linear-gradient(90deg, #ff6b4a 0%, #ff8e53 100%);
    color: white !important;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 74, 0.2);
}

.login_btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 74, 0.3);
}

/* 底部链接 */
.footer {
    text-align: center;
    margin-top: 24px;
}

.footer a {
    font-size: 14px;
    color: #ff6b4a !important;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.footer a::after {
    content: '→';
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.footer a:hover::after {
    transform: translateX(3px);
}
#turnstile-widget{
    text-align: center;
}

/* 响应式调整 */
@media (max-width: 375px) {
    .lg-t label:nth-child(2) {
        font-size: 32px;
    }

    .sign_login {
        padding: 24px 16px;
    }

    .uilist_div {
        height: 52px;
    }

    .login_btn a {
        height: 52px;
    }
}