Changed around line 1
+ :root {
+ --primary-color: #2563eb;
+ --secondary-color: #1e40af;
+ --background-color: #f8fafc;
+ --text-color: #1e293b;
+ --border-color: #e2e8f0;
+ --shadow-color: rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ background-color: var(--background-color);
+ color: var(--text-color);
+ line-height: 1.6;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ header {
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .login-section {
+ max-width: 400px;
+ margin: 2rem auto;
+ padding: 2rem;
+ background: white;
+ border-radius: 12px;
+ box-shadow: 0 4px 6px var(--shadow-color);
+ }
+
+ .login-container {
+ margin-bottom: 1.5rem;
+ }
+
+ h2 {
+ font-size: 1.8rem;
+ margin-bottom: 1.5rem;
+ text-align: center;
+ }
+
+ .input-group {
+ margin-bottom: 1rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ input {
+ width: 100%;
+ padding: 0.75rem;
+ border: 1px solid var(--border-color);
+ border-radius: 8px;
+ font-size: 1rem;
+ }
+
+ .options {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin: 1rem 0;
+ }
+
+ .forgot-password {
+ color: var(--primary-color);
+ text-decoration: none;
+ }
+
+ .login-btn {
+ width: 100%;
+ padding: 0.75rem;
+ background-color: var(--primary-color);
+ color: white;
+ border: none;
+ border-radius: 8px;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+ }
+
+ .login-btn:hover {
+ background-color: var(--secondary-color);
+ }
+
+ .divider {
+ text-align: center;
+ margin: 1.5rem 0;
+ position: relative;
+ }
+
+ .divider::before,
+ .divider::after {
+ content: '';
+ position: absolute;
+ top: 50%;
+ width: 45%;
+ height: 1px;
+ background-color: var(--border-color);
+ }
+
+ .divider::before {
+ left: 0;
+ }
+
+ .divider::after {
+ right: 0;
+ }
+
+ .qr-login {
+ text-align: center;
+ }
+
+ .qr-code-placeholder {
+ width: 150px;
+ height: 150px;
+ margin: 1rem auto;
+ background-color: var(--border-color);
+ border-radius: 8px;
+ }
+
+ .register-prompt {
+ text-align: center;
+ margin-top: 1rem;
+ }
+
+ .register-link {
+ color: var(--primary-color);
+ text-decoration: none;
+ font-weight: 500;
+ }
+
+ footer {
+ margin-top: auto;
+ padding: 1rem;
+ background-color: white;
+ text-align: center;
+ }
+
+ footer nav {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ }
+
+ footer a {
+ color: var(--text-color);
+ text-decoration: none;
+ }
+
+ @media (max-width: 480px) {
+ .login-section {
+ margin: 1rem;
+ padding: 1.5rem;
+ }
+
+ h1 {
+ font-size: 2rem;
+ }
+
+ h2 {
+ font-size: 1.5rem;
+ }
+ }