* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Microsoft YaHei', Arial, sans-serif; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; } .container { width: 100%; max-width: 400px; padding: 20px; } .login-wrapper { background: rgba(255, 255, 255, 0.95); border-radius: 10px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); padding: 40px 30px; backdrop-filter: blur(10px); } .login-header { text-align: center; margin-bottom: 30px; } .login-header h1 { color: #333; font-size: 24px; font-weight: bold; } .login-tabs { display: flex; margin-bottom: 30px; border-bottom: 2px solid #eee; } .tab-button { flex: 1; padding: 12px; border: none; background: transparent; font-size: 16px; cursor: pointer; transition: all 0.3s ease; color: #666; } .tab-button.active { color: #667eea; border-bottom: 3px solid #667eea; font-weight: bold; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; color: #333; font-weight: 500; } .form-group input { width: 100%; padding: 12px 15px; border: 2px solid #ddd; border-radius: 5px; font-size: 16px; transition: border-color 0.3s ease; } .form-group input:focus { outline: none; border-color: #667eea; } .form-group button { width: 100%; padding: 12px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border: none; border-radius: 5px; font-size: 16px; cursor: pointer; transition: transform 0.2s ease; } .form-group button:hover { transform: translateY(-2px); } .form-group button:active { transform: translateY(0); } .message { margin-top: 20px; padding: 10px; border-radius: 5px; text-align: center; display: none; } .message.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; } .message.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; } .loading { opacity: 0.7; pointer-events: none; }