| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- height: 100vh;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #0b1220;
- font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
- color: #e2e8f0;
- }
- .login-box {
- width: 420px;
- background: #0f172a;
- border: 1px solid #1f2937;
- border-radius: 4px;
- padding: 40px;
- }
- .logo {
- text-align: center;
- font-size: 48px;
- margin-bottom: 15px;
- }
- h1 {
- color: #e2e8f0;
- text-align: center;
- font-size: 24px;
- line-height: 1.35;
- max-width: 300px;
- margin: 0 auto 10px;
- }
- .subtitle {
- text-align: center;
- color: #94a3b8;
- margin-bottom: 30px;
- }
- input {
- width: 100%;
- height: 45px;
- margin-bottom: 15px;
- border: 1px solid #475569;
- border-radius: 4px;
- padding-left: 15px;
- background: #1e293b;
- color: #e2e8f0;
- font-size: 15px;
- outline: none;
- transition: border-color 0.18s;
- }
- input::placeholder {
- color: #64748b;
- }
- input:focus {
- border-color: #3b82f6;
- }
- #msg {
- margin-top: 15px;
- text-align: center;
- color: #ef4444;
- font-size: 14px;
- }
|