login.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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: #0f172a;
  12. font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
  13. }
  14. .login-box {
  15. width: 420px;
  16. background: #1e293b;
  17. border-radius: 12px;
  18. padding: 40px;
  19. box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  20. }
  21. .logo {
  22. text-align: center;
  23. font-size: 48px;
  24. margin-bottom: 15px;
  25. }
  26. h1 {
  27. color: white;
  28. text-align: center;
  29. font-size: 26px;
  30. margin-bottom: 10px;
  31. }
  32. .subtitle {
  33. text-align: center;
  34. color: #94a3b8;
  35. margin-bottom: 30px;
  36. }
  37. input {
  38. width: 100%;
  39. height: 45px;
  40. margin-bottom: 15px;
  41. border: 1px solid #475569;
  42. border-radius: 8px;
  43. padding-left: 15px;
  44. background: #334155;
  45. color: white;
  46. font-size: 15px;
  47. outline: none;
  48. transition: border-color 0.18s, box-shadow 0.18s;
  49. }
  50. input::placeholder {
  51. color: #64748b;
  52. }
  53. input:focus {
  54. border-color: #3b82f6;
  55. box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
  56. }
  57. button {
  58. width: 100%;
  59. height: 45px;
  60. border: none;
  61. border-radius: 8px;
  62. cursor: pointer;
  63. font-size: 16px;
  64. background: #2563eb;
  65. color: white;
  66. transition: background 0.18s, transform 0.1s;
  67. }
  68. button:hover {
  69. background: #1d4ed8;
  70. }
  71. button:active {
  72. transform: translateY(1px);
  73. background: #1e40af;
  74. }
  75. button:focus {
  76. outline: none;
  77. box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
  78. }
  79. #msg {
  80. margin-top: 15px;
  81. text-align: center;
  82. color: #ef4444;
  83. font-size: 14px;
  84. }