/* 登录页面样式 */
.login-section {
    padding: 120px 0 60px;
    background: #f7faff;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(24,144,255,0.08);
    overflow: hidden;
}

.login-left {
    flex: 1;
    min-height: 500px;
    background: #1890ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-right {
    flex: 1;
    padding: 40px;
}

.login-form {
    max-width: 360px;
    margin: 0 auto;
}

.login-form h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    text-align: center;
}

.login-subtitle {
    color: #666;
    font-size: 16px;
    text-align: center;
    margin-bottom: 36px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    background: #f7faff;
    border: 1px solid #e6eaf2;
    border-radius: 8px;
    padding: 0 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group label:focus-within {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24,144,255,0.1);
}

.form-group i {
    color: #8ca6c7;
    font-size: 18px;
    margin-right: 12px;
}

.form-group input {
    flex: 1;
    height: 48px;
    border: none;
    background: none;
    font-size: 15px;
    color: #222;
    outline: none;
}

.form-group input::placeholder {
    color: #8ca6c7;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid #8ca6c7;
    border-radius: 4px;
    cursor: pointer;
}

.forgot-password {
    color: #1890ff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: #1765ad;
}

.btn-login {
    width: 100%;
    height: 48px;
    background: #1890ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-login:hover {
    background: #1765ad;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .login-container {
        flex-direction: column;
        gap: 0;
    }
    
    .login-left {
        min-height: 200px;
        width: 100%;
    }
    
    .login-right {
        width: 100%;
        padding: 32px 20px;
    }
}

@media (max-width: 500px) {
    .login-section {
        padding: 100px 0 40px;
    }
    
    .login-form h2 {
        font-size: 24px;
    }
    
    .login-subtitle {
        font-size: 14px;
    }
    
    .form-group input {
        height: 44px;
        font-size: 14px;
    }
    
    .btn-login {
        height: 44px;
        font-size: 15px;
    }
} 