/* 认证页样式 */

/* 认证页容器 */
.k8-auth-wrapper {
    min-height: calc(100vh - 50px);
    background-image: url('https://bce.bdstatic.com/eop-plat/assets/img/login/login-bg-20250325.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 认证卡片 */
.k8-auth-card {
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* 验证码输入框 */
.arco-input-append {
    padding: 0 !important;
}

/* 认证链接 */
.k8-auth-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.k8-auth-links .arco-link {
    color: #41464f;
    font-size: 12px;
}

.k8-auth-links .arco-link:hover {
    color: rgb(var(--primary-6));
}

.k8-auth-divider {
    color: #c5ccdb;
    font-size: 12px;
    padding: 0 4px;
}

/* 服务条款 */
.k8-auth-agreement {
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
}

.k8-auth-agreement .arco-typography,
.k8-auth-agreement .arco-link {
    font-size: 12px !important;
}

/* 验证码图片 */
.k8-auth-captcha {
    width: 100%;
    height: 34px;
    cursor: pointer;
    object-fit: cover;
    background: var(--color-fill-2);
    display: block;
}

/* 手机号输入组 */
.k8-auth-phone-group {
    display: flex;
    width: 100%;
}

.k8-auth-phone-code {
    width: 90px;
    flex-shrink: 0;
}

.k8-auth-phone-group .arco-input-wrapper {
    flex: 1;
}

/* 短信验证码按钮 */
.k8-auth-sms-btn {
    height: 34px;
}

/* 第三方登录 */
.k8-auth-oauth {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 14px;
}

.k8-auth-oauth .arco-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.k8-auth-oauth img,
.k8-auth-oauth svg {
    width: 24px;
    height: 24px;
}

.k8-auth-oauth-divider .arco-divider-text {
    color: #41464f;
    font-size: 12px;
}

/* 响应式 */
@media (max-width: 480px) {
    .k8-auth-card {
        max-width: 100%;
    }
}
