| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- * {
- 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: 26px;
- margin-bottom: 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;
- }
|