* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 900px;
}

.login-container {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-left {
    flex: 1;
    background-color: #f0f8ff;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.login-left h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.login-left h2 {
    font-size: 18px;
    font-weight: normal;
    color: #666;
    margin-bottom: 30px;
}

.info-text {
    margin-bottom: 30px;
}

.info-text p {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.thank-you {
    margin-top: auto;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.login-right {
    flex: 1.2;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #4a90e2;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.form-actions {
    margin-top: 30px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #3a80d2;
}

.register-link {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.register-link a {
    color: #4a90e2;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

.forgot-password {
    margin-top: 15px;
    text-align: center;
}

.forgot-password a {
    color: #666;
    font-size: 13px;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    
    .login-left, .login-right {
        padding: 30px;
    }
}
 