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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  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. .d-none {
  28. display: none;
  29. }
  30. .biz-login-wrap {
  31. width: 100%;
  32. display: flex;
  33. align-items: center;
  34. height: 100vh;
  35. margin: 0;
  36. }
  37. .biz-login-wrap .form-container {
  38. width: 375px;
  39. height: auto;
  40. margin: auto;
  41. position: relative;
  42. padding: 40px;
  43. border: 1px solid #dadce0;
  44. border-radius: 5px;
  45. overflow: hidden;
  46. }
  47. .biz-login-wrap .form-group {
  48. position: relative;
  49. }
  50. .biz-login-wrap .form-group input {
  51. width: 100%;
  52. box-sizing: border-box;
  53. border: 1px solid #d0d0d0;
  54. background-color: transparent;
  55. border-radius: 4px;
  56. color: #202124;
  57. font-size: 16px;
  58. margin: 1px 1px 0 1px;
  59. padding: 13px 15px;
  60. z-index: 1;
  61. }
  62. .biz-login-wrap .form-group input.error {
  63. border-color: #d93025;
  64. }
  65. .biz-login-wrap .form-group label {
  66. position: absolute;
  67. left: 10px;
  68. top: 50%;
  69. transform: translateY(-50%);
  70. color: #a5a5a5;
  71. font-size: 16px;
  72. padding: 0px 4px;
  73. background-color: white;
  74. transition-property: transform;
  75. transition-duration: 500ms;
  76. z-index: -1;
  77. }
  78. .biz-login-wrap .form-link a {
  79. color: #1a73e8;
  80. font-size: 16px;
  81. font-weight: 500;
  82. }
  83. .biz-login-wrap .form-link label {
  84. color: #5f6368;
  85. font-size: 14px;
  86. display: inline-block;
  87. }
  88. .email-input:focus + label {
  89. transform: translate3d(0, -175%, 0);
  90. z-index: 1;
  91. color: #1a73e8;
  92. }
  93. .biz-login-wrap .password-input:focus + label {
  94. transform: translate3d(0, -175%, 0);
  95. z-index: 1;
  96. color: #1a73e8;
  97. }
  98. .biz-login-wrap .form-group input.error:focus + label {
  99. color: #d93025;
  100. }
  101. .biz-login-wrap .form-group label.password-fixed {
  102. transform: translate3d(0, -175%, 0);
  103. z-index: 1 !important;
  104. color: #1a73e8;
  105. }
  106. .biz-login-wrap .form-header {
  107. display: flex;
  108. flex-direction: column;
  109. justify-content: center;
  110. align-items: center;
  111. row-gap: 20px;
  112. margin-bottom: 40px;
  113. }
  114. .biz-login-wrap .form-header h2 {
  115. margin: 0;
  116. font-size: 24px;
  117. font-weight: 500;
  118. }
  119. .biz-login-wrap .form-header h4 {
  120. font-size: 16px;
  121. font-weight: 500;
  122. }
  123. .biz-login-wrap .form-body {
  124. display: flex;
  125. flex-direction: column;
  126. row-gap: 30px;
  127. }
  128. .biz-login-wrap .password-form-box {
  129. row-gap: 60px;
  130. }
  131. .biz-login-wrap .login-logo {
  132. width: 150px;
  133. margin: 0 auto;
  134. }
  135. .biz-login-wrap .btn {
  136. float: right;
  137. color: white;
  138. background: #1a73e8;
  139. border: 0;
  140. padding: 8px 22px;
  141. border-radius: 4px;
  142. font-weight: 500;
  143. font-size: 16px;
  144. cursor: pointer;
  145. }
  146. .biz-login-wrap a {
  147. text-decoration: none;
  148. }
  149. .biz-login-wrap .flex-between-center {
  150. display: flex;
  151. align-items: center;
  152. justify-content: space-between;
  153. }
  154. .biz-login-wrap .mt-5 {
  155. margin-top: 5px;
  156. }
  157. .biz-login-wrap .mt-10 {
  158. margin-top: 10px;
  159. }
  160. .biz-login-wrap .password-checkbox {
  161. width: 20px;
  162. height: 20px;
  163. margin-right: 5px;
  164. }
  165. .biz-login-wrap .show-password-link {
  166. display: flex;
  167. align-items: center;
  168. column-gap: 10px;
  169. margin-top: 15px;
  170. }
  171. .biz-login-wrap .show-password-link label {
  172. font-size: 16px;
  173. font-weight: 500;
  174. }
  175. .biz-login-wrap .err-msg:not(:empty) {
  176. color: #d93025;
  177. font-size: 12px;
  178. margin-top: 5px;
  179. }
  180. .biz-login-wrap h4 {
  181. font-size: 16px;
  182. font-weight: 500;
  183. }
  184. .biz-login-wrap #txt_PhoneorMail:focus + label {
  185. transform: translate3d(0, -175%, 0);
  186. z-index: 1;
  187. color: #1a73e8;
  188. }
  189. .biz-login-wrap #txt_Code:focus + label {
  190. transform: translate3d(0, -175%, 0);
  191. z-index: 1;
  192. color: #1a73e8;
  193. }
  194. .biz-login-wrap #txt_NewPassword:focus + label {
  195. transform: translate3d(0, -175%, 0);
  196. z-index: 1;
  197. color: #1a73e8;
  198. }
  199. #txt_ConfirmPassword:focus + label {
  200. transform: translate3d(0, -175%, 0);
  201. z-index: 1;
  202. color: #1a73e8;
  203. }
  204. .back-btn {
  205. text-align: right;
  206. margin: 0px 20px;
  207. }
  208. .btn-block {
  209. margin-top: 10px;
  210. margin-bottom: 20px;
  211. }
  212. .btn-block {
  213. width: 100%;
  214. }
  215. .opt-text {
  216. text-align: center;
  217. margin: 10px 0px;
  218. }
  219. .verify-block {
  220. margin: 10px 0px;
  221. }
  222. .verify-block .btn {
  223. margin-left: 5px;
  224. }
  225. .biz-login-wrap h2 {
  226. margin: 0;
  227. font-size: 24px;
  228. font-weight: 500;
  229. text-align: center;
  230. }
  231. .reset-success {
  232. text-align: center;
  233. margin: 20px 0px;
  234. }
  235. .conformPassword {
  236. margin-top: 30px;
  237. }
  238. .error-warning {
  239. font-weight: 700;
  240. color: white;
  241. margin-right: 5px;
  242. }
  243. div#div_ValidationSummary {
  244. background: #ce1717;
  245. color: white;
  246. }
  247. .p-2 {
  248. padding: 5px;
  249. }