login.css 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. @import url('https://fonts.googleapis.com/css?family=Poppins');
  2. /* BASIC */
  3. .login-body {
  4. font-family: "Poppins", sans-serif;
  5. height: 100vh;
  6. }
  7. a {
  8. color: #92badd;
  9. display:inline-block;
  10. text-decoration: none;
  11. font-weight: 400;
  12. }
  13. h2 {
  14. text-align: center;
  15. font-size: 16px;
  16. font-weight: 600;
  17. text-transform: uppercase;
  18. display:inline-block;
  19. margin: 40px 8px 10px 8px;
  20. color: #cccccc;
  21. }
  22. /* STRUCTURE */
  23. .wrapper {
  24. display: flex !important;
  25. align-items: center !important;
  26. flex-direction: column !important;
  27. justify-content: center !important;
  28. width: 100% !important;
  29. min-height: 100% !important;
  30. padding: 20px !important;
  31. }
  32. #formContent {
  33. -webkit-border-radius: 10px 10px 10px 10px !important;
  34. border-radius: 10px 10px 10px 10px !important;
  35. background: white !important;
  36. /* padding: 30px !important; */
  37. width: 100%;
  38. max-width: 120vh;
  39. position: relative !important;
  40. padding: 0px;
  41. -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  42. box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  43. text-align: center;
  44. }
  45. #formFooter {
  46. background-color: white !important;
  47. padding: 25px !important;
  48. text-align: center !important;
  49. -webkit-border-radius: 0 0 10px 10px !important;
  50. border-radius: 0 0 10px 10px !important;
  51. }
  52. /* TABS */
  53. h2.inactive {
  54. color: #cccccc;
  55. }
  56. h2.active {
  57. color: black;
  58. border-bottom: 2px solid #5fbae9;
  59. }
  60. /* FORM TYPOGRAPHY*/
  61. input[type=button], input[type=submit], input[type=reset] {
  62. background-color: #56baed;
  63. border: none;
  64. color: white;
  65. padding: 15px 80px;
  66. text-align: center;
  67. text-decoration: none;
  68. display: inline-block;
  69. text-transform: uppercase;
  70. font-size: 13px;
  71. -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  72. box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  73. -webkit-border-radius: 5px 5px 5px 5px;
  74. border-radius: 5px 5px 5px 5px;
  75. margin: 5px 20px 40px 20px;
  76. -webkit-transition: all 0.3s ease-in-out;
  77. -moz-transition: all 0.3s ease-in-out;
  78. -ms-transition: all 0.3s ease-in-out;
  79. -o-transition: all 0.3s ease-in-out;
  80. transition: all 0.3s ease-in-out;
  81. }
  82. input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
  83. background-color: #39ace7;
  84. }
  85. input[type=button]:active, input[type=submit]:active, input[type=reset]:active {
  86. -moz-transform: scale(0.95);
  87. -webkit-transform: scale(0.95);
  88. -o-transform: scale(0.95);
  89. -ms-transform: scale(0.95);
  90. transform: scale(0.95);
  91. }
  92. .dx-widget .dx-collection .dx-responsivebox-screen-lg .dx-responsivebox {
  93. line-height: 0.2 !important;
  94. }
  95. label.dx-field-item-label .dx-field-item-label-location-top{
  96. margin-bottom : 0 !important;
  97. }
  98. /* input[type=text],
  99. input[type=password],
  100. input[type=email],
  101. input[type=checkbox],
  102. input[type=number],
  103. input[type=date] {
  104. background-color: #f6f6f6;
  105. border: none;
  106. color: #0d0d0d;
  107. text-align: center;
  108. text-decoration: none;
  109. display: inline-block;
  110. font-size: 16px;
  111. margin-top: 5px;
  112. margin-bottom: 5px;
  113. width: 85%;
  114. border: 2px solid #f6f6f6;
  115. -webkit-transition: all 0.5s ease-in-out;
  116. -moz-transition: all 0.5s ease-in-out;
  117. -ms-transition: all 0.5s ease-in-out;
  118. -o-transition: all 0.5s ease-in-out;
  119. transition: all 0.5s ease-in-out;
  120. -webkit-border-radius: 5px 5px 5px 5px;
  121. border-radius: 5px 5px 5px 5px;
  122. }
  123. input[type=text]:focus,
  124. input[type=password]:focus,
  125. input[type=email]:focus,
  126. input[type=checkbox]:focus,
  127. input[type=number]:focus,
  128. input[type=date]:focus {
  129. background-color: #fff;
  130. border-bottom: 2px solid #5fbae9;
  131. }
  132. input[type=text]:placeholder,
  133. input[type=password]:placeholder,
  134. input[type=email]:placeholder,
  135. input[type=checkbox]:placeholder,
  136. input[type=number]:placeholder,
  137. input[type=date]:placeholder {
  138. color: #cccccc;
  139. } */
  140. /* ANIMATIONS */
  141. /* Simple CSS3 Fade-in-down Animation */
  142. .fadeInDown {
  143. -webkit-animation-name: fadeInDown;
  144. animation-name: fadeInDown;
  145. -webkit-animation-duration: 1s;
  146. animation-duration: 1s;
  147. -webkit-animation-fill-mode: both;
  148. animation-fill-mode: both;
  149. }
  150. @-webkit-keyframes fadeInDown {
  151. 0% {
  152. opacity: 0;
  153. -webkit-transform: translate3d(0, -100%, 0);
  154. transform: translate3d(0, -100%, 0);
  155. }
  156. 100% {
  157. opacity: 1;
  158. -webkit-transform: none;
  159. transform: none;
  160. }
  161. }
  162. @keyframes fadeInDown {
  163. 0% {
  164. opacity: 0;
  165. -webkit-transform: translate3d(0, -100%, 0);
  166. transform: translate3d(0, -100%, 0);
  167. }
  168. 100% {
  169. opacity: 1;
  170. -webkit-transform: none;
  171. transform: none;
  172. }
  173. }
  174. /* Simple CSS3 Fade-in Animation */
  175. @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  176. @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  177. @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  178. .fadeIn {
  179. opacity:0;
  180. -webkit-animation:fadeIn ease-in 1;
  181. -moz-animation:fadeIn ease-in 1;
  182. animation:fadeIn ease-in 1;
  183. -webkit-animation-fill-mode:forwards;
  184. -moz-animation-fill-mode:forwards;
  185. animation-fill-mode:forwards;
  186. -webkit-animation-duration:1s;
  187. -moz-animation-duration:1s;
  188. animation-duration:1s;
  189. }
  190. .fadeIn.first {
  191. -webkit-animation-delay: 0.4s;
  192. -moz-animation-delay: 0.4s;
  193. animation-delay: 0.4s;
  194. }
  195. .fadeIn.second {
  196. -webkit-animation-delay: 0.6s;
  197. -moz-animation-delay: 0.6s;
  198. animation-delay: 0.6s;
  199. }
  200. .fadeIn.third {
  201. -webkit-animation-delay: 0.8s;
  202. -moz-animation-delay: 0.8s;
  203. animation-delay: 0.8s;
  204. }
  205. .fadeIn.fourth {
  206. -webkit-animation-delay: 1s;
  207. -moz-animation-delay: 1s;
  208. animation-delay: 1s;
  209. }
  210. /* Simple CSS3 Fade-in Animation */
  211. .underlineHover:after {
  212. display: block;
  213. left: 0;
  214. bottom: -10px;
  215. width: 0;
  216. height: 2px;
  217. background-color: #f1f7fa;
  218. content: "";
  219. transition: width 0.2s;
  220. }
  221. .underlineHover:hover {
  222. color: #0d0d0d;
  223. }
  224. .underlineHover:hover:after{
  225. width: 100%;
  226. }
  227. /* OTHERS */
  228. *:focus {
  229. outline: none;
  230. }
  231. #icon {
  232. width:10%;
  233. }
  234. * {
  235. box-sizing: border-box;
  236. }
  237. /* CUSTOM */
  238. .shadow-hover {
  239. transition: 0.5s , 0.5s;
  240. }
  241. .shadow-hover:hover {
  242. width: 105% !important;
  243. box-shadow: 0 30px 60px 0 #939393 !important;
  244. }
  245. .dropzone {
  246. flex: 1;
  247. display: flex;
  248. flex-direction: column;
  249. align-items: center;
  250. padding: 20px;
  251. border-width: 2px;
  252. border-radius: 2px;
  253. border-color: #eeeeee;
  254. border-style: dashed;
  255. background-color: #fafafa;
  256. color: #bdbdbd;
  257. outline: none;
  258. transition: border .24s ease-in-out;
  259. }
  260. .dropzone p {
  261. height: 32px;
  262. }
  263. .dropzone-required{
  264. border-color: #F44336;
  265. }
  266. .dropzone:hover{
  267. cursor: pointer;
  268. }
  269. .profile-picture-image{
  270. height: 150px;
  271. }
  272. .profile-picture-image > img{
  273. max-height: 150px;
  274. }
  275. .text-blue{
  276. color: #56baed;
  277. }
  278. .gradient-background{
  279. background-image: linear-gradient(to right, #42C3EB , #F6A3DD);
  280. }
  281. /* RIBBON */
  282. .ribbon-wrapper-popular {
  283. height: 120px;
  284. overflow: hidden;
  285. position: absolute;
  286. right: 0;
  287. width: 117px;
  288. }
  289. .ribbon-popular {
  290. background-color: #f68360;
  291. color: #fff;
  292. left: -5px;
  293. padding: 7px 0;
  294. position: relative;
  295. text-align: center;
  296. top: 24px;
  297. -webkit-transform: rotate(45deg);
  298. transform: rotate(45deg);
  299. width: 160px;
  300. }