login.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. height: 100vh;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. background: #0b1220;
  12. font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
  13. color: #e2e8f0;
  14. }
  15. .login-box {
  16. width: 420px;
  17. background: #0f172a;
  18. border: 1px solid #1f2937;
  19. border-radius: 4px;
  20. padding: 40px;
  21. }
  22. .logo {
  23. text-align: center;
  24. font-size: 48px;
  25. margin-bottom: 15px;
  26. }
  27. h1 {
  28. color: #e2e8f0;
  29. text-align: center;
  30. font-size: 24px;
  31. line-height: 1.35;
  32. max-width: 300px;
  33. margin: 0 auto 10px;
  34. }
  35. .subtitle {
  36. text-align: center;
  37. color: #94a3b8;
  38. margin-bottom: 30px;
  39. }
  40. input {
  41. width: 100%;
  42. height: 45px;
  43. margin-bottom: 15px;
  44. border: 1px solid #475569;
  45. border-radius: 4px;
  46. padding-left: 15px;
  47. background: #1e293b;
  48. color: #e2e8f0;
  49. font-size: 15px;
  50. outline: none;
  51. transition: border-color 0.18s;
  52. }
  53. input::placeholder {
  54. color: #64748b;
  55. }
  56. input:focus {
  57. border-color: #3b82f6;
  58. }
  59. #msg {
  60. margin-top: 15px;
  61. text-align: center;
  62. color: #ef4444;
  63. font-size: 14px;
  64. }