login.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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: 26px;
  31. margin-bottom: 10px;
  32. }
  33. .subtitle {
  34. text-align: center;
  35. color: #94a3b8;
  36. margin-bottom: 30px;
  37. }
  38. input {
  39. width: 100%;
  40. height: 45px;
  41. margin-bottom: 15px;
  42. border: 1px solid #475569;
  43. border-radius: 4px;
  44. padding-left: 15px;
  45. background: #1e293b;
  46. color: #e2e8f0;
  47. font-size: 15px;
  48. outline: none;
  49. transition: border-color 0.18s;
  50. }
  51. input::placeholder {
  52. color: #64748b;
  53. }
  54. input:focus {
  55. border-color: #3b82f6;
  56. }
  57. #msg {
  58. margin-top: 15px;
  59. text-align: center;
  60. color: #ef4444;
  61. font-size: 14px;
  62. }