/* 基础样式 */
body {
    line-height: 0.7;
}
.logo.text-center {
    margin-bottom: 30px;
}
.logo.text-center h1 {
    font-size: 32px;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
}
.login-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    height: 100vh;
    padding-top: 120px;
    position: relative;
}
.login-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    height: calc(100% - 140px);
}
.login-col-left {
    width: 45%;
    height: auto;
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-100%);
    max-width: 540px;
}
.login-banner {
    border-radius: 10px;
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-banner img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.login-col-right {
    width: 55%;
    margin-left: 45%;
}

/* 新增卡片虚化效果 */
@media (min-width: 769px) {
    .login_right {
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        border-radius: 12px !important;
        overflow: hidden;
    }
    
    .login_right:hover {
        background: rgba(255, 255, 255, 1) !important;
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0);
    }
}

.system-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
}
.system-logo img {
    height: 40px;
    width: auto;
}
.footer-info {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
    color: #666;
    line-height: 1.8;
}
.footer-info p {
    margin: 0;
}
.input-group-prepend {
    width: 100px;
}
.allow_login_code_captcha{display:none;}
.form-control,.input-group-append{
    height: 40px;
}
.login_right {
    padding: 40px;
    width: 75% !important;
    margin-left: auto;
    padding-bottom: 25px;
}
.auth-full-page-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('/themes/clientarea/Q3user/assets/images/login-1_compressed.png') center center / cover no-repeat fixed;
}
.form-group {
    position: relative;
    margin-bottom: 1rem;
}
.form-group .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 2;
    display: flex;
    align-items: center;
}
.form-group .input-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.form-group label + .input-icon {
    top: calc(50% + 10px);
}
.form-control {
    padding-left: 40px !important;
}
.input-group-prepend .form-control {
    border-right: none;
    text-align: left;
    padding-left: 12px !important;
}
.input-group .input-icon {
    position: absolute;
    left: 110px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}
.form-group .input-group:not(:first-child) .input-icon {
    left: 12px;
    z-index: 5;
}
.input-group-prepend + .form-control {
    padding-left: 40px !important;
}
.slider-verify-container {
    margin: 15px 0;
}

/* 响应式适配 */
@media (max-width: 768px) {
    body {
        line-height: 1.5;
    }
    .logo.text-center {
        margin-bottom: 20px;
    }
    .logo.text-center h1 {
        font-size: 24px;
    }
    .login-container {
        padding: 15px;
        padding-top: 80px;
        height: auto;
        min-height: 100vh;
    }
    .login-row {
        flex-direction: column;
        gap: 20px;
        height: auto;
    }
    .login-col-left,
    .login-col-right {
        width: 100% !important;
        position: static;
        transform: none;
        margin-left: 0;
        max-width: none;
    }
    .login-banner {
        display: none;
    }
    .system-logo {
        top: 10px;
        left: 10px;
    }
    .system-logo img {
        height: 30px;
    }
    .footer-info {
        position: relative;
        padding: 10px;
        font-size: 10px;
        line-height: 1.5;
    }
    .login_right {
        width: 100% !important;
        padding: 20px;
        background: #fff !important;  /* 强制移动端白色背景 */
    }
    .input-group-prepend {
        width: 80px;
    }
    .form-group .input-icon {
        left: 10px;
    }
    .input-group .input-icon {
        left: 90px;
    }
    .form-control {
        padding-left: 35px !important;
        font-size: 14px;
    }
    .btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    .captcha-input-group {
        flex-direction: column;
    }
    .captcha-input-group .input-group {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .auth-full-page-content {
        background-attachment: scroll;
    }
    .input-group-prepend {
        width: 30%;
    }
    .input-group-prepend .form-control {
        padding: 6px !important;
    }
}