login_new.css 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. /*
  2. Project Name: WFM
  3. Date : 05-11-2020
  4. Author: Amar Kholambe (amar.kholambe@luminad.com)
  5. */
  6. body {
  7. background: rgb(239, 138, 227);
  8. background: url('./../images/bg-l.jpg') no-repeat center center fixed;
  9. -webkit-background-size: cover;
  10. -moz-background-size: cover;
  11. -o-background-size: cover;
  12. background-size: cover;
  13. }
  14. .login {
  15. position: absolute;
  16. right: 0%;
  17. top: 50%;
  18. transform: translate(-20%, -50%);
  19. background: rgb(255 255 255 / 50%);
  20. z-index: 9;
  21. }
  22. .login-container {
  23. width: 500px;
  24. margin: 0 auto;
  25. height: 300px;
  26. box-shadow: 0 0 178px #9b9b9b;
  27. border: 1px solid #d1d1d1;
  28. /* background: #f2f2f2; */
  29. }
  30. .login-left {
  31. background: url('./../images/Picture3.svg') no-repeat;
  32. background-size: contain !important;
  33. float: left;
  34. width: 45%;
  35. height: 100%;
  36. position: relative;
  37. background-position: top;
  38. overflow: hidden;
  39. }
  40. .login-right {
  41. float: left;
  42. width: 55%;
  43. padding: 20px 30px 0;
  44. height: 100%;
  45. position: absolute;
  46. top: 0;
  47. right: 0;
  48. bottom: 0;
  49. }
  50. .form-signin,
  51. .form-reset-password {
  52. /* padding: 0 30px 0 0; */
  53. overflow: auto;
  54. height: 410px;
  55. }
  56. .lbox {
  57. width: 100%;
  58. display: block;
  59. }
  60. .clogo {
  61. /* width: 200px; */
  62. /* margin: 50px 120px; */
  63. display: block;
  64. text-align: center;
  65. font-size: 35px;
  66. color: #fff;
  67. z-index: 1;
  68. position: absolute;
  69. left: 50%;
  70. bottom: 25px;
  71. transform: translateX(-50%);
  72. }
  73. .llogo {
  74. width: 175px;
  75. position: absolute;
  76. top: 10px;
  77. left: 10px;
  78. z-index: 9;
  79. }
  80. .lbox p {
  81. margin: 320px auto auto;
  82. color: #424242;
  83. font-size: 12px;
  84. text-align: right;
  85. }
  86. .form-signin-heading {
  87. padding-bottom: 30px;
  88. text-align: center;
  89. color: #fff;
  90. margin: 0;
  91. }
  92. .lang_label {
  93. position: initial !important;
  94. display: inline-block;
  95. margin-right: 5px;
  96. }
  97. select {
  98. width: 70px !important;
  99. display: inline-block !important;
  100. }
  101. /* form starting stylings ------------------------------- */
  102. .login .group {
  103. position: relative;
  104. margin-bottom: 35px;
  105. }
  106. .login input {
  107. padding: 5px;
  108. display: block;
  109. width: 100%;
  110. border: none;
  111. border-bottom: 1px solid #fff;
  112. background-color: transparent;
  113. }
  114. .login input:focus {
  115. outline: none;
  116. }
  117. /* LABEL ======================================= */
  118. .login label {
  119. color: #999;
  120. /* font-size: 18px; */
  121. font-weight: normal;
  122. position: absolute;
  123. pointer-events: none;
  124. left: 5px;
  125. top: 15px;
  126. transition: 0.2s ease all;
  127. -moz-transition: 0.2s ease all;
  128. -webkit-transition: 0.2s ease all;
  129. }
  130. /* active state */
  131. .login input:focus~label,
  132. .login input:valid~label {
  133. top: -20px;
  134. font-size: 14px;
  135. color: #fff;
  136. }
  137. /* active state */
  138. .login input:focus~.highlight {
  139. -webkit-animation: inputHighlighter 0.3s ease;
  140. -moz-animation: inputHighlighter 0.3s ease;
  141. animation: inputHighlighter 0.3s ease;
  142. }
  143. /* ANIMATIONS ================ */
  144. @-webkit-keyframes inputHighlighter {
  145. from {
  146. background: #fff;
  147. }
  148. to {
  149. width: 0;
  150. background: transparent;
  151. }
  152. }
  153. @-moz-keyframes inputHighlighter {
  154. from {
  155. background: #fff;
  156. }
  157. to {
  158. width: 0;
  159. background: transparent;
  160. }
  161. }
  162. @keyframes inputHighlighter {
  163. from {
  164. background: #fff;
  165. }
  166. to {
  167. width: 0;
  168. background: transparent;
  169. }
  170. }
  171. .login button {
  172. border-color: #fff;
  173. color: #fff;
  174. font-size: 18px;
  175. }
  176. .login button:hover,
  177. .login button:active,
  178. .login button:focus {
  179. background-color: #fff !important;
  180. color: #424242 !important;
  181. }
  182. .forgotPass {
  183. color: #fff;
  184. margin-top: 25px;
  185. display: block;
  186. }
  187. .form-reset-password input {
  188. padding: 8px 8px 8px 5px;
  189. }
  190. .form-reset-password label {
  191. top: 10px;
  192. }
  193. .form-reset-password .group {
  194. margin-bottom: 40px;
  195. }
  196. .header {
  197. height: 200px;
  198. background: #425464;
  199. }
  200. .footer {
  201. height: 50px;
  202. background: #425464;
  203. }
  204. @media only screen and (max-width: 900px) {
  205. .login,
  206. .login-container {
  207. width: 100%;
  208. }
  209. }
  210. @media only screen and (max-width: 768px) {
  211. .login {
  212. top: 150px;
  213. }
  214. .login-left,
  215. .login-right {
  216. width: 100%;
  217. float: none;
  218. }
  219. .form-signin,
  220. .form-reset-password {
  221. height: 100%;
  222. display: initial;
  223. }
  224. }
  225. /* width */
  226. ::-webkit-scrollbar {
  227. width: 5px;
  228. }
  229. /* Track */
  230. ::-webkit-scrollbar-track {
  231. box-shadow: inset 0 0 5px grey;
  232. border-radius: 2px;
  233. }
  234. /* Handle */
  235. ::-webkit-scrollbar-thumb {
  236. background: #444;
  237. border-radius: 2px;
  238. }
  239. /* Handle on hover */
  240. ::-webkit-scrollbar-thumb:hover {
  241. background: #333333;
  242. }
  243. .alert {
  244. display: none;
  245. }
  246. .alert {
  247. z-index: 9999;
  248. position: fixed;
  249. top: 10px;
  250. width: auto;
  251. left: 50%;
  252. transform: translateX(-50%);
  253. }
  254. #triangle-topleft {
  255. clip-path: polygon(0 0, 0% 100%, 100% 0);
  256. background: #C4161C;
  257. width: 100%;
  258. height: 430px;
  259. }