login.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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:
  13. "Segoe UI",
  14. "Microsoft YaHei",
  15. sans-serif;
  16. }
  17. .login-box{
  18. width:420px;
  19. background:#1e293b;
  20. border-radius:12px;
  21. padding:40px;
  22. box-shadow:
  23. 0 0 30px rgba(0,0,0,0.4);
  24. }
  25. .logo{
  26. text-align:center;
  27. font-size:48px;
  28. margin-bottom:15px;
  29. }
  30. h1{
  31. color:white;
  32. text-align:center;
  33. font-size:26px;
  34. margin-bottom:10px;
  35. }
  36. .subtitle{
  37. text-align:center;
  38. color:#94a3b8;
  39. margin-bottom:30px;
  40. }
  41. input{
  42. width:100%;
  43. height:45px;
  44. margin-bottom:15px;
  45. border:none;
  46. border-radius:8px;
  47. padding-left:15px;
  48. background:#334155;
  49. color:white;
  50. font-size:15px;
  51. }
  52. input:focus{
  53. outline:none;
  54. }
  55. button{
  56. width:100%;
  57. height:45px;
  58. border:none;
  59. border-radius:8px;
  60. cursor:pointer;
  61. font-size:16px;
  62. background:#2563eb;
  63. color:white;
  64. }
  65. button:hover{
  66. opacity:0.9;
  67. }
  68. #msg{
  69. margin-top:15px;
  70. text-align:center;
  71. color:#ef4444;
  72. }