login.module.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .loginContainer {
  2. display: flex;
  3. flex-direction: column;
  4. min-height: 100vh;
  5. background-color: #e8f0fe;
  6. position: relative;
  7. overflow: hidden;
  8. color: #160a19;
  9. }
  10. .leftSection {
  11. flex: 1;
  12. display: flex;
  13. width: 390px;
  14. margin: auto;
  15. flex-direction: column;
  16. }
  17. .platformTitle {
  18. font-size: 36px;
  19. font-weight: bold;
  20. letter-spacing: 0.64px;
  21. color: #333;
  22. position: relative;
  23. }
  24. .platformTitle::after {
  25. content: '';
  26. position: absolute;
  27. bottom: -8px;
  28. left: 0;
  29. width: 70px;
  30. height: 5px;
  31. border-radius: 4px;
  32. background-color: #1890FF;
  33. }
  34. .rightSection {
  35. flex: 1;
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. margin-top: 2em;
  40. }
  41. .loginBox {
  42. background-color: white;
  43. border-radius: 10px;
  44. padding: 2rem;
  45. width: 100%;
  46. max-width: 450px;
  47. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  48. }
  49. .tabsContainer :global(.ant-tabs-nav::before) {
  50. border-bottom: none !important;
  51. }
  52. .tabsContainer :global(.ant-tabs-tab) {
  53. padding: 12px 16px;
  54. font-size: 16px;
  55. }
  56. .tabsContainer :global(.ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn) {
  57. color: #1890ff;
  58. font-weight: 500;
  59. }
  60. .phonePrefix {
  61. width: 30px;
  62. text-align: center;
  63. color: #333;
  64. text-align: left;
  65. }
  66. .phoneInput {
  67. width: 100%;
  68. font-size: 16px;
  69. }
  70. .codeRow {
  71. display: flex;
  72. gap: 12px;
  73. }
  74. .codeInput {
  75. width: 100%;
  76. font-size: 16px;
  77. flex: 1;
  78. }
  79. .getCodeBtn {
  80. width: 120px;
  81. background-color: #fff;
  82. border: none;
  83. color: #1890ff;
  84. font-weight: 500;
  85. }
  86. .loginBtn {
  87. height: 48px;
  88. font-size: 16px;
  89. font-weight: 500;
  90. margin-top: 16px;
  91. background-color: #1890ff;
  92. }
  93. .decorationTop {
  94. flex: 1;
  95. display: flex;
  96. align-items: center;
  97. justify-content: center;
  98. }
  99. .decorationBottom {
  100. position: absolute;
  101. bottom: 0;
  102. right: 0;
  103. width: 100%;
  104. height: 70px;
  105. text-align: center;
  106. font-size: 12px;
  107. }
  108. @media (max-width: 992px) {
  109. .leftSection {
  110. display: none;
  111. }
  112. }