New UI layout
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

login.css 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
  2. html,
  3. body,
  4. div,
  5. span,
  6. h1,
  7. h2,
  8. h3,
  9. h4,
  10. h5,
  11. h6,
  12. p,
  13. a,
  14. input {
  15. margin: 0;
  16. padding: 0;
  17. border: 0;
  18. font-size: 100%;
  19. font: inherit;
  20. vertical-align: baseline;
  21. }
  22. body {
  23. margin: 0;
  24. font-family: 'Poppins', sans-serif;
  25. color: #3d3d3d;
  26. }
  27. .biz-login-wrap {
  28. width: 100%;
  29. display: flex;
  30. align-items: center;
  31. height: 100vh;
  32. margin: 0;
  33. }
  34. .biz-login-wrap .form-container {
  35. width: 375px;
  36. height: auto;
  37. margin: auto;
  38. position: relative;
  39. padding: 40px;
  40. border: 1px solid #dadce0;
  41. border-radius: 5px;
  42. overflow: hidden;
  43. }
  44. .biz-login-wrap .form-group {
  45. position: relative;
  46. }
  47. .biz-login-wrap .form-group input {
  48. width: 100%;
  49. box-sizing: border-box;
  50. border: 1px solid #d0d0d0;
  51. background-color: transparent;
  52. border-radius: 4px;
  53. color: #202124;
  54. font-size: 16px;
  55. margin: 1px 1px 0 1px;
  56. padding: 13px 15px;
  57. z-index: 1;
  58. }
  59. .biz-login-wrap .form-group label {
  60. position: absolute;
  61. left: 10px;
  62. top: 50%;
  63. transform: translateY(-50%);
  64. color: #a5a5a5;
  65. font-size: 16px;
  66. padding: 0px 4px;
  67. background-color: white;
  68. transition-property: transform;
  69. transition-duration: 500ms;
  70. z-index: -1;
  71. }
  72. .biz-login-wrap .form-link a {
  73. color: #1a73e8;
  74. font-size: 16px;
  75. font-weight: 500;
  76. }
  77. .biz-login-wrap .form-link label {
  78. color: #5f6368;
  79. font-size: 14px;
  80. display: inline-block;
  81. }
  82. .email-input:focus+label {
  83. transform: translate3d(0, -175%, 0);
  84. z-index: 1;
  85. color: #1a73e8;
  86. }
  87. .biz-login-wrap .password-input:focus+label {
  88. transform: translate3d(0, -175%, 0);
  89. z-index: 1;
  90. color: #1a73e8;
  91. }
  92. .biz-login-wrap .password-fixed {
  93. transform: translate3d(0, -175%, 0);
  94. z-index: 1 !important;
  95. color: #1a73e8;
  96. }
  97. .biz-login-wrap .form-header {
  98. display: flex;
  99. flex-direction: column;
  100. justify-content: center;
  101. align-items: center;
  102. row-gap: 20px;
  103. margin-bottom: 40px;
  104. }
  105. .biz-login-wrap .form-header h2 {
  106. margin: 0;
  107. font-size: 24px;
  108. font-weight: 500;
  109. }
  110. .biz-login-wrap .form-header h4 {
  111. font-size: 16px;
  112. font-weight: 500;
  113. }
  114. .biz-login-wrap .form-body {
  115. display: flex;
  116. flex-direction: column;
  117. row-gap: 30px;
  118. }
  119. .biz-login-wrap .password-form-box {
  120. row-gap: 60px;
  121. }
  122. .biz-login-wrap .login-logo {
  123. width: 150px;
  124. margin: 0 auto;
  125. }
  126. .biz-login-wrap .btn {
  127. float: right;
  128. color: white;
  129. background: #1a73e8;
  130. border: 0;
  131. padding: 8px 22px;
  132. border-radius: 4px;
  133. font-weight: 500;
  134. font-size: 16px;
  135. }
  136. .biz-login-wrap a {
  137. text-decoration: none;
  138. }
  139. .biz-login-wrap .flex-between-center {
  140. display: flex;
  141. align-items: center;
  142. justify-content: space-between;
  143. }
  144. .biz-login-wrap .mt-5 {
  145. margin-top: 5px;
  146. }
  147. .biz-login-wrap .mt-10 {
  148. margin-top: 10px;
  149. }
  150. .biz-login-wrap .password-checkbox {
  151. width: 20px;
  152. height: 20px;
  153. }
  154. .biz-login-wrap .show-password-link {
  155. display: flex;
  156. align-items: center;
  157. column-gap: 10px;
  158. margin-top: 15px;
  159. }
  160. .biz-login-wrap .show-password-link label {
  161. font-size: 16px;
  162. font-weight: 500;
  163. }
  164. .biz-login-wrap h4 {
  165. font-size: 16px;
  166. font-weight: 500;
  167. }
  168. .biz-login-wrap #txt_PhoneorMail:focus+label {
  169. transform: translate3d(0, -175%, 0);
  170. z-index: 1;
  171. color: #1a73e8;
  172. }
  173. .biz-login-wrap #txt_Code:focus+label {
  174. transform: translate3d(0, -175%, 0);
  175. z-index: 1;
  176. color: #1a73e8;
  177. }
  178. .biz-login-wrap #txt_NewPassword:focus+label {
  179. transform: translate3d(0, -175%, 0);
  180. z-index: 1;
  181. color: #1a73e8;
  182. }
  183. #txt_ConfirmPassword:focus+label {
  184. transform: translate3d(0, -175%, 0);
  185. z-index: 1;
  186. color: #1a73e8;
  187. }
  188. .back-btn {
  189. text-align: right;
  190. margin: 0px 20px;
  191. }
  192. .btn-block {
  193. margin-top: 10px;
  194. margin-bottom: 20px;
  195. }
  196. .btn-block {
  197. width: 100%;
  198. }
  199. .opt-text {
  200. text-align: center;
  201. margin: 10px 0px;
  202. }
  203. .verify-block {
  204. margin: 10px 0px;
  205. }
  206. .verify-block .btn {
  207. margin-left: 5px;
  208. }
  209. h2 {
  210. margin: 0;
  211. font-size: 24px;
  212. font-weight: 500;
  213. text-align: center;
  214. }
  215. .reset-success {
  216. text-align: center;
  217. margin: 20px 0px;
  218. }
  219. .d-none {
  220. display: none;
  221. }
  222. .conformPassword {
  223. margin-top: 30px;
  224. }