main.css 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  1. /*//////////////////////////////////////////////////////////////////
  2. [ FONT ]*/
  3. @font-face {
  4. font-family: Poppins-Regular;
  5. src: url('../fonts/poppins/Poppins-Regular.ttf');
  6. }
  7. @font-face {
  8. font-family: Poppins-Medium;
  9. src: url('../fonts/poppins/Poppins-Medium.ttf');
  10. }
  11. @font-face {
  12. font-family: Poppins-Bold;
  13. src: url('../fonts/poppins/Poppins-Bold.ttf');
  14. }
  15. @font-face {
  16. font-family: Poppins-SemiBold;
  17. src: url('../fonts/poppins/Poppins-SemiBold.ttf');
  18. }
  19. @font-face {
  20. font-family: Montserrat-Bold;
  21. src: url('../fonts/montserrat/Montserrat-Bold.ttf');
  22. }
  23. /*//////////////////////////////////////////////////////////////////
  24. [ RESTYLE TAG ]*/
  25. * {
  26. margin: 0px;
  27. padding: 0px;
  28. box-sizing: border-box;
  29. }
  30. body, html {
  31. height: 10%;
  32. font-family: Poppins-Regular, sans-serif;
  33. }
  34. /*---------------------------------------------*/
  35. a {
  36. font-family: Poppins-Regular;
  37. font-size: 14px;
  38. line-height: 1.7;
  39. color: #666666;
  40. margin: 0px;
  41. transition: all 0.4s;
  42. -webkit-transition: all 0.4s;
  43. -o-transition: all 0.4s;
  44. -moz-transition: all 0.4s;
  45. }
  46. a:focus {
  47. outline: none !important;
  48. }
  49. a:hover {
  50. text-decoration: none;
  51. color: #333333;
  52. }
  53. /*---------------------------------------------*/
  54. h1,h2,h3,h4,h5,h6 {
  55. margin: 1px;
  56. }
  57. p {
  58. font-family: Poppins-Regular;
  59. font-size: 14px;
  60. line-height: 1.7;
  61. color: #666666;
  62. margin: 0px;
  63. }
  64. ul, li {
  65. margin: 0px;
  66. list-style-type: none;
  67. }
  68. /*---------------------------------------------*/
  69. input {
  70. outline: none;
  71. border: none;
  72. }
  73. textarea {
  74. outline: none;
  75. border: none;
  76. }
  77. textarea:focus, input:focus {
  78. border-color: transparent !important;
  79. }
  80. input::-webkit-input-placeholder { color: #999999;}
  81. input:-moz-placeholder { color: #999999;}
  82. input::-moz-placeholder { color: #999999;}
  83. input:-ms-input-placeholder { color: #999999;}
  84. textarea::-webkit-input-placeholder { color: #999999;}
  85. textarea:-moz-placeholder { color: #999999;}
  86. textarea::-moz-placeholder { color: #999999;}
  87. textarea:-ms-input-placeholder { color: #999999;}
  88. /*---------------------------------------------*/
  89. button {
  90. outline: none !important;
  91. border: none;
  92. background: black;
  93. }
  94. button:hover {
  95. cursor: pointer;
  96. }
  97. iframe {
  98. border: none !important;
  99. }
  100. /*//////////////////////////////////////////////////////////////////
  101. [ utility ]*/
  102. /*==================================================================
  103. [ Text ]*/
  104. .txt1 {
  105. font-family: Poppins-Regular;
  106. font-size: 13px;
  107. line-height: 1.4;
  108. color: #fff;
  109. }
  110. .txt2 {
  111. font-family: Poppins-Regular;
  112. font-size: 13px;
  113. line-height: 1.4;
  114. color: #fe2c54;
  115. }
  116. .txt3 {
  117. font-family: Poppins-Regular;
  118. font-size: 15px;
  119. line-height: 1.4;
  120. color: #fe2c54;
  121. text-transform: uppercase;
  122. }
  123. [ Text ]*/
  124. .txt12 {
  125. font-family: Poppins-Regular;
  126. font-size: 13px;
  127. line-height: 1.4;
  128. color: #999999;
  129. }
  130. /*==================================================================
  131. [ Size ]*/
  132. .size1 {
  133. width: 355px;
  134. max-width: 100%;
  135. }
  136. .size2 {
  137. width: calc(100% - 43px);
  138. }
  139. /*//////////////////////////////////////////////////////////////////
  140. [ login ]*/
  141. .limiter {
  142. width: 100%;
  143. margin: 0 auto;
  144. }
  145. .container-login100 {
  146. width: 100%;
  147. min-height: 100vh;
  148. display: -webkit-box;
  149. display: -webkit-flex;
  150. display: -moz-box;
  151. display: -ms-flexbox;
  152. display: flex;
  153. flex-wrap: wrap;
  154. justify-content: center;
  155. align-items: center;
  156. padding: 15px;
  157. background: #000;
  158. }
  159. .wrap-login100 {
  160. width: 1000px;
  161. background: #000;
  162. overflow: hidden;
  163. display: -webkit-box;
  164. display: -webkit-flex;
  165. display: -moz-box;
  166. display: -ms-flexbox;
  167. display: flex;
  168. flex-wrap: wrap;
  169. align-items: stretch;
  170. flex-direction: row-reverse;
  171. }
  172. /*==================================================================
  173. [ login more ]*/
  174. .login100-more {
  175. width: 50%;
  176. background-repeat: no-repeat;
  177. background-size: ;
  178. background-position: center;
  179. position: relative;
  180. z-index: 100;
  181. }
  182. /*==================================================================
  183. [ Form ]*/
  184. .login100-form {
  185. width: 50%;
  186. display: -webkit-box;
  187. display: -webkit-flex;
  188. display: -moz-box;
  189. display: -ms-flexbox;
  190. display: flex;
  191. flex-wrap: wrap;
  192. padding: 303px 65px 40px 65px;
  193. }
  194. .login100-form-title {
  195. font-family:Poppins-Regular;
  196. font-size: 20px;
  197. color: #fff;
  198. line-height: 1.2;
  199. text-transform: uppercase;
  200. letter-spacing: 2px;
  201. text-align: center;
  202. width: 100%;
  203. display: block;
  204. }
  205. /*------------------------------------------------------------------
  206. [ Input ]*/
  207. .wrap-input100 {
  208. width: 100%;
  209. position: relative;
  210. #border: 1px solid #e6e6e6;
  211. }
  212. .rs1-wrap-input100,
  213. .rs2-wrap-input100 {
  214. width: 50%;
  215. }
  216. .rs2-wrap-input100 {
  217. border-left: none;
  218. }
  219. .input100 {
  220. display: block;
  221. width: 100%;
  222. background: transparent;
  223. font-family: Poppins-Regular;
  224. font-size: 18px;
  225. color: #fff;
  226. line-height: 1.2;
  227. padding: 0 25px;
  228. }
  229. input.input100 {
  230. height: 55px;
  231. }
  232. /*---------------------------------------------*/
  233. .focus-input100 {
  234. position: absolute;
  235. display: block;
  236. width: calc(100% + 2px);
  237. height: calc(100% + 2px);
  238. top: -1px;
  239. left: -1px;
  240. pointer-events: none;
  241. border: none;
  242. visibility: hidden;
  243. opacity: 0;
  244. -webkit-transition: all 0.4s;
  245. -o-transition: all 0.4s;
  246. -moz-transition: all 0.4s;
  247. transition: all 0.4s;
  248. -webkit-transform: scaleX(1.1) scaleY(1.3);
  249. -moz-transform: scaleX(1.1) scaleY(1.3);
  250. -ms-transform: scaleX(1.1) scaleY(1.3);
  251. -o-transform: scaleX(1.1) scaleY(1.3);
  252. transform: scaleX(1.1) scaleY(1.3);
  253. }
  254. .input100:focus + .focus-input100 {
  255. visibility: visible;
  256. opacity: 1;
  257. -webkit-transform: scale(1);
  258. -moz-transform: scale(1);
  259. -ms-transform: scale(1);
  260. -o-transform: scale(1);
  261. transform: scale(1);
  262. }
  263. /*------------------------------------------------------------------
  264. [ Button ]*/
  265. .container-login100-form-btn {
  266. width: 100%;
  267. display: -webkit-box;
  268. display: -webkit-flex;
  269. display: -moz-box;
  270. display: -ms-flexbox;
  271. display: flex;
  272. flex-wrap: wrap;
  273. justify-content: center;
  274. }
  275. .login100-form-btn {
  276. display: -webkit-box;
  277. display: -webkit-flex;
  278. display: -moz-box;
  279. display: -ms-flexbox;
  280. display: flex;
  281. justify-content: center;
  282. align-items: center;
  283. padding: 0 20px;
  284. width: 100%;
  285. height: 50px;
  286. border-radius: 3px;
  287. background: #fe2c54;
  288. font-family: Montserrat-Bold;
  289. font-size: 12px;
  290. color: #fff;
  291. line-height: 1.2;
  292. text-transform: uppercase;
  293. letter-spacing: 1px;
  294. -webkit-transition: all 0.4s;
  295. -o-transition: all 0.4s;
  296. -moz-transition: all 0.4s;
  297. transition: all 0.4s;
  298. }
  299. .login100-form-btn:hover {
  300. background: #fe2c80;
  301. }
  302. /*------------------------------------------------------------------
  303. [ Responsive ]*/
  304. @media (max-width: 992px) {
  305. .login100-form {
  306. width: 60%;
  307. padding-left: 30px;
  308. padding-right: 30px;
  309. }
  310. .login100-more {
  311. width: 40%;
  312. }
  313. }
  314. @media (max-width: 768px) {
  315. .login100-form {
  316. width: 100%;
  317. }
  318. .login100-more {
  319. width: 100%;
  320. }
  321. }
  322. @media (max-width: 576px) {
  323. .login100-form {
  324. padding-left: 15px;
  325. padding-right: 15px;
  326. padding-top: 150px;
  327. }
  328. .rs1-wrap-input100,
  329. .rs2-wrap-input100 {
  330. width: 100%;
  331. }
  332. .rs2-wrap-input100 {
  333. border-left: 1px solid #e6e6e6;
  334. }
  335. }
  336. /*------------------------------------------------------------------
  337. [ Alert validate ]*/
  338. .validate-input {
  339. position: relative;
  340. }
  341. .alert-validate::before {
  342. content: attr(data-validate);
  343. position: absolute;
  344. max-width: 70%;
  345. background-color: #fff;
  346. border: 1px solid #c80000;
  347. border-radius: 2px;
  348. padding: 4px 25px 4px 10px;
  349. top: 50%;
  350. -webkit-transform: translateY(-50%);
  351. -moz-transform: translateY(-50%);
  352. -ms-transform: translateY(-50%);
  353. -o-transform: translateY(-50%);
  354. transform: translateY(-50%);
  355. right: 12px;
  356. pointer-events: none;
  357. font-family: Poppins-Regular;
  358. color: #c80000;
  359. font-size: 13px;
  360. line-height: 1.4;
  361. text-align: left;
  362. visibility: hidden;
  363. opacity: 0;
  364. -webkit-transition: opacity 0.4s;
  365. -o-transition: opacity 0.4s;
  366. -moz-transition: opacity 0.4s;
  367. transition: opacity 0.4s;
  368. }
  369. .alert-validate::after {
  370. content: "\f12a";
  371. font-family: FontAwesome;
  372. display: block;
  373. position: absolute;
  374. color: #c80000;
  375. font-size: 16px;
  376. top: 50%;
  377. -webkit-transform: translateY(-50%);
  378. -moz-transform: translateY(-50%);
  379. -ms-transform: translateY(-50%);
  380. -o-transform: translateY(-50%);
  381. transform: translateY(-50%);
  382. right: 18px;
  383. }
  384. .alert-validate:hover:before {
  385. visibility: visible;
  386. opacity: 1;
  387. }
  388. @media (max-width: 992px) {
  389. .alert-validate::before {
  390. visibility: visible;
  391. opacity: 1;
  392. }
  393. }