Spaces:
Running
Running
| body, | |
| html { | |
| margin: 0; | |
| padding: 0; | |
| height: 100%; | |
| font-family: Arial, sans-serif; | |
| background: #111827; | |
| color: #e5e7eb; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| .login-box { | |
| background: #374151; | |
| padding: 2rem; | |
| border-radius: 6px; | |
| width: 300px; | |
| } | |
| h2 { | |
| margin-top: 0; | |
| } | |
| label { | |
| display: block; | |
| margin: 0.5rem 0; | |
| } | |
| input, select { | |
| width: 100%; | |
| padding: 0.5rem; | |
| border: none; | |
| border-radius: 4px; | |
| box-sizing: border-box; | |
| } | |
| button { | |
| width: 100%; | |
| padding: 0.5rem; | |
| margin-top: 1rem; | |
| border: none; | |
| border-radius: 4px; | |
| background-color: #3b82f6; | |
| color: white; | |
| cursor: pointer; | |
| } | |
| button:hover { | |
| background-color: #2563eb; | |
| } | |
| .flash { | |
| background: #ef4444; | |
| color: white; | |
| padding: 0.5rem; | |
| border-radius: 4px; | |
| margin-bottom: 1rem; | |
| } | |
| .toggle-link { | |
| margin-top: 1.5rem; | |
| text-align: center; | |
| font-size: 0.9rem; | |
| } | |
| .toggle-link p { | |
| margin: 0; | |
| } | |
| .toggle-link a { | |
| color: #3b82f6; | |
| text-decoration: none; | |
| font-weight: bold; | |
| } | |
| .toggle-link a:hover { | |
| text-decoration: underline; | |
| } |