/* PUREADMIN风格登录页面样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #4a6741 100%);
    background-attachment: fixed;
    overflow: hidden;
}

/* 主容器 */
.login-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* 左侧插画区域 - 绿野仙踪主题 */
.illustration-section {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #4a6741 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景装饰 */
.magic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(74, 103, 65, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* 主要内容 */
.magic-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    color: #fff;
    max-width: 500px;
}

.magic-title {
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.magic-title .main-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    letter-spacing: 8px;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.5),
            0 0 40px rgba(255, 255, 255, 0.3),
            0 0 60px rgba(255, 255, 255, 0.2);
    }
    to {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 0.8),
            0 0 50px rgba(255, 255, 255, 0.5),
            0 0 70px rgba(255, 255, 255, 0.3);
    }
}

.magic-title .sub-title {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    letter-spacing: 4px;
    opacity: 0.9;
}

/* 特色功能 */
.magic-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.feature-item:nth-child(2) i {
    animation-delay: 0.5s;
}

.feature-item:nth-child(3) i {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-item span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* 引用文字 */
.magic-quote {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.magic-quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* 飘落的叶子 */
.leaves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(74, 103, 65, 0.6);
    border-radius: 0 100% 0 100%;
    animation: fall linear infinite;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* 魔法光点 */
.magic-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 右侧登录区域 */
.login-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    background: #ffffff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

/* 语言切换 */
.language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
}

.toggle-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.toggle-text {
    font-size: 14px;
    color: #6b7280;
}

.toggle-slider {
    width: 40px;
    height: 20px;
    background: #d1d5db;
    border-radius: 10px;
    position: relative;
    transition: background 0.3s ease;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* 品牌区域 */
.brand-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo-image:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.brand-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 4px;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand-subtitle {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0.8;
}

/* 登录表单 */
.login-form-container {
    width: 100%;
    max-width: 400px;
}

.login-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0 16px;
    height: 48px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #4a6741;
    box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.1);
}

.input-icon {
    color: #9ca3af;
    margin-right: 12px;
    font-size: 16px;
}

.input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #1f2937;
}

.input-wrapper input::placeholder {
    color: #9ca3af;
}

.password-toggle {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
}

.password-toggle:hover {
    color: #6b7280;
}

/* 验证码 */
.captcha-wrapper {
    padding-right: 8px;
}

.captcha-image {
    width: 80px;
    height: 32px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.captcha-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.1) 2px,
        rgba(255, 255, 255, 0.1) 4px
    );
}

.captcha-text {
    font-size: 14px;
    font-weight: bold;
    color: #1f2937;
    letter-spacing: 2px;
    z-index: 1;
}

/* 表单选项 */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #6b7280;
}

.remember-me input {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.remember-me input:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.remember-me input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.option-text {
    margin-right: 4px;
}

.info-icon {
    font-size: 12px;
    color: #9ca3af;
}

.forgot-password {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* 登录按钮 */
.login-btn {
    width: 100%;
    height: 48px;
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.login-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-text {
    display: block;
    transition: opacity 0.3s ease;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-btn.loading .btn-text {
    opacity: 0;
}

.login-btn.loading .btn-loading {
    opacity: 1;
}

/* 其他登录方式 */
.alternative-login {
    text-align: center;
}

.alt-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.alt-btn {
    flex: 1;
    height: 36px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #6b7280;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alt-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.divider {
    position: relative;
    margin: 20px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider-text {
    background: white;
    padding: 0 16px;
    color: #9ca3af;
    font-size: 12px;
    position: relative;
    z-index: 1;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn.wechat { color: #07c160; }
.social-btn.qq { color: #12b7f5; }
.social-btn.alipay { color: #1677ff; }
.social-btn.weibo { color: #e6162d; }

/* 版权信息 */
.copyright {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #9ca3af;
    font-size: 12px;
}


/* 消息提示 */
.message-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1001;
    min-width: 250px;
}

.message-toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
}

.toast-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    font-weight: bold;
}

.message-toast.success .toast-icon {
    background: #10b981;
}

.message-toast.error .toast-icon {
    background: #ef4444;
}

.message-toast.success .toast-icon::before {
    content: '✓';
}

.message-toast.error .toast-icon::before {
    content: '✕';
}

.toast-message {
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
}

/* 动画 */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .login-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .illustration-section {
        height: auto;
        min-height: 200px;
        max-height: 300px;
        padding: 20px 15px;
        flex-shrink: 0;
    }
    
    .magic-content {
        padding: 20px 15px;
    }
    
    .magic-title {
        margin-bottom: 30px;
    }
    
    .magic-title .main-title {
        font-size: 2rem;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }
    
    .magic-title .sub-title {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .magic-features {
        gap: 15px;
        flex-wrap: wrap;
        margin-bottom: 25px;
        justify-content: center;
    }
    
    .feature-item {
        flex: 0 0 auto;
        min-width: 80px;
    }
    
    .feature-item i {
        font-size: 1.8rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .magic-quote {
        padding: 15px;
        margin: 0;
    }
    
    .magic-quote p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .login-section {
        height: auto;
        min-height: auto;
        padding: 20px 15px;
        justify-content: flex-start;
        flex: 1;
    }
    
    .login-form-container {
        width: 100%;
        max-width: 100%;
    }
    
    .brand-section {
        margin-bottom: 30px;
    }
    
    .logo-image {
        width: 100px;
        height: 100px;
    }
    
    .brand-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .brand-subtitle {
        font-size: 12px;
    }
    
    .input-wrapper {
        height: 44px;
        padding: 0 12px;
    }
    
    .input-wrapper .layui-input {
        font-size: 14px;
    }
    
    .captcha-wrapper {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    
    .captcha-wrapper .layui-input {
        flex: 1;
        min-width: 0;
    }
    
    .captcha-image {
        width: 100px !important;
        height: 44px !important;
        flex-shrink: 0;
        min-width: 100px;
    }
    
    .login-form .captcha-wrapper {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
    
    .login-form .captcha-image {
        width: 100px !important;
        height: 44px !important;
    }
    
    .form-options {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        gap: 10px;
    }
    
    .form-options .layui-inline {
        margin: 0 !important;
        flex: 1;
    }
    
    .form-options .layui-inline:first-child {
        flex: 1;
    }
    
    .form-options .layui-inline:last-child {
        text-align: right !important;
        flex: 0 0 auto;
    }
    
    .remember-me-wrapper {
        flex: 1;
    }
    
    .forgot-password-wrapper {
        flex: 0 0 auto;
        text-align: right !important;
    }
    
    
    .copyright {
        margin-top: 20px;
        font-size: 12px;
        padding: 15px;
        text-align: center;
    }
    
    .language-toggle {
        top: 15px;
        right: 15px;
    }
    
    /* 确保所有元素在移动端正常显示 */
    .login-form-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .brand-section {
        text-align: center;
        margin-bottom: 25px;
    }
    
    /* 输入框优化 */
    .input-wrapper {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* 按钮优化 */
    .layui-btn-fluid {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* 确保layui组件在移动端正常显示 */
    .layui-form-item {
        margin-bottom: 15px;
    }
    
    .layui-inline {
        display: block;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .illustration-section {
        min-height: 200px;
        padding: 20px 15px;
    }
    
    .magic-content {
        padding: 15px 10px;
    }
    
    .magic-title .main-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .magic-title .sub-title {
        font-size: 0.8rem;
    }
    
    .magic-features {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .feature-item {
        min-width: 70px;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
    
    .feature-item span {
        font-size: 0.75rem;
    }
    
    .magic-quote {
        padding: 12px;
    }
    
    .magic-quote p {
        font-size: 0.8rem;
    }
    
    .login-section {
        padding: 15px 10px;
        min-height: auto;
    }
    
    .login-form-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .brand-section {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .brand-title {
        font-size: 22px;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }
    
    .brand-subtitle {
        font-size: 10px;
    }
    
    .input-wrapper {
        height: 42px;
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }
    
    .input-icon {
        font-size: 14px !important;
        margin-right: 8px !important;
        flex-shrink: 0;
    }
    
    .password-toggle {
        padding: 4px 6px !important;
        min-width: 32px;
        flex-shrink: 0;
        margin-left: 8px;
    }
    
    .input-wrapper .layui-input {
        flex: 1;
        min-width: 0;
        width: auto;
    }
    
    .captcha-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        width: 100%;
    }
    
    .captcha-wrapper .layui-input {
        flex: 1;
        min-width: 0;
    }
    
    .captcha-image {
        width: 90px !important;
        height: 42px !important;
        flex-shrink: 0;
        min-width: 90px;
    }
    
    .login-form .captcha-wrapper {
        display: flex;
        flex-direction: row;
        gap: 8px;
    }
    
    .login-form .captcha-image {
        width: 90px !important;
        height: 42px !important;
        flex-shrink: 0;
    }
    
    .captcha-text {
        font-size: 16px !important;
    }
    
    .layui-form-item {
        margin-bottom: 15px;
        width: 100%;
    }
    
    .layui-btn-lg {
        height: 44px;
        line-height: 44px;
        font-size: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* 确保输入框容器正常显示 */
    .input-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .input-wrapper .layui-input {
        flex: 1;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .form-options {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .form-options .layui-inline {
        margin: 0 !important;
    }
    
    .form-options .layui-inline:first-child {
        flex: 1;
        min-width: 0;
    }
    
    .form-options .layui-inline:last-child {
        text-align: right !important;
        flex: 0 0 auto;
        white-space: nowrap;
    }
    
    .remember-me-wrapper {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .forgot-password-wrapper {
        flex: 0 0 auto;
        text-align: right !important;
        white-space: nowrap;
    }
    
    .forgot-password {
        font-size: 13px;
    }
    
    .copyright {
        font-size: 11px;
        padding: 10px;
        line-height: 1.5;
        text-align: center;
        margin-top: 20px;
    }
    
    /* 隐藏语言切换在移动端 */
    .language-toggle {
        display: none;
    }
}

/* Layui组件优化样式 */
.login-form .layui-form-item {
    margin-bottom: 20px;
}

.login-form .layui-input {
    border: none;
    background: transparent;
    height: auto;
    line-height: normal;
    padding: 0;
}

.login-form .input-wrapper .layui-input {
    flex: 1;
}

.login-form .input-wrapper .input-icon {
    color: #9ca3af;
    margin-right: 12px;
    font-size: 16px;
}

.login-form .password-toggle {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px 8px;
    margin-left: 8px;
    height: auto;
    line-height: 1;
}

.login-form .password-toggle:hover {
    color: #4a6741;
    background: transparent;
}

.login-form .captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-form .captcha-image {
    flex-shrink: 0;
    width: 100px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0;
    margin: 0;
}

.login-form .captcha-image:hover {
    border-color: #4a6741;
}

.login-form .captcha-text {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
    letter-spacing: 2px;
    user-select: none;
}

.login-form .layui-form-checked[lay-skin="primary"] {
    border-color: #3b82f6;
    background-color: #3b82f6;
}

.login-form .layui-form-checkbox[lay-skin="primary"] i {
    color: #fff;
}

.login-form .layui-btn-fluid {
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 10px;
}

.login-form .layui-btn-lg {
    font-size: 16px;
}

.login-form .form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.login-form .form-options .layui-inline {
    margin: 0;
}

.login-form .forgot-password {
    color: #4a6741;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.login-form .forgot-password:hover {
    color: #3d5635 !important;
}

/* 表单选项样式 */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.remember-me-wrapper {
    flex: 1;
}

.forgot-password-wrapper {
    text-align: right;
}

/* 其他登录方式 */
.alternative-login {
    margin-top: 30px;
}

.alt-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider-line {
    border: none;
    border-top: 1px solid #e6e6e6;
    margin: 0;
}

.divider-text {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 14px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-login .layui-btn-radius {
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-login .layui-btn-radius i {
    font-size: 24px;
    color: #fff;
}

.social-login .wechat {
    background: #07c160;
}

.social-login .qq {
    background: #12b7f5;
}

.social-login .alipay {
    background: #1677ff;
}

.social-login .weibo {
    background: #e6162d;
}
