style2.css 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. /*custom font*/
  2. @import url(https://fonts.googleapis.com/css?family=Montserrat);
  3. /*basic reset*/
  4. * {margin: 0; padding: 0;}
  5. html {
  6. min-height: 100%;
  7. height: auto;
  8. /*Image only BG fallback*/
  9. /*background = gradient + image pattern combo*/
  10. /* background:
  11. linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6)); */
  12. }
  13. body {
  14. font-family: montserrat, arial, verdana;
  15. background-color: white;
  16. font-size: 1.05rem;
  17. }
  18. .ml {
  19. margin-left: 10px;
  20. }
  21. .mr {
  22. margin-right: 10px;
  23. }
  24. .mb {
  25. margin-bottom: 12px;
  26. }
  27. .top {
  28. margin-top: 20px;
  29. position: sticky;
  30. top: 0;
  31. left: 50%;
  32. z-index: 20;
  33. background-color: inherit;
  34. }
  35. .navbar {
  36. background-color: white;
  37. }
  38. /* .imf {
  39. position: fixed;
  40. top: 0;
  41. left: 50%;
  42. transform: translateX(-50%);
  43. z-index: 3;
  44. } */
  45. .img_banner {
  46. background-image: url('images/banner_top1.jpg');
  47. background-repeat: no-repeat;
  48. background-size: contain;
  49. background-position: center;
  50. width: 100%;
  51. height: 65px;
  52. }
  53. /*form styles*/
  54. .img_logo {
  55. display: inline-block;
  56. margin: 0 auto;
  57. margin-bottom: 10px;
  58. }
  59. .title__block {
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. margin: 0px auto;
  64. }
  65. .sub-logo {
  66. display: inline-block;
  67. font-weight: 700;
  68. font-size: 1.4rem;
  69. color: white;
  70. }
  71. .slogan {
  72. display: block;
  73. font-weight: 700;
  74. font-size: 1.2rem;
  75. color: white;
  76. }
  77. .notice_card {
  78. box-sizing: border-box;
  79. width: 80%;
  80. margin: 0 10%;
  81. margin-bottom: 1.5rem;
  82. background: white;
  83. border: 0 none;
  84. border-radius: 3px;
  85. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  86. padding: 10px 20px;
  87. line-height: 1.5rem;
  88. }
  89. /*form styles*/
  90. #msform {
  91. min-width: 370px;
  92. max-width: 1000px;
  93. margin: 50px auto;
  94. margin-bottom: 20px;
  95. text-align: center;
  96. position: relative;
  97. }
  98. #msform fieldset {
  99. background: white;
  100. border: 0 none;
  101. border-radius: 3px;
  102. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  103. padding: 20px 30px;
  104. box-sizing: border-box;
  105. width: 80%;
  106. margin: 0 10%;
  107. /*stacking fieldsets above each other*/
  108. position: relative;
  109. }
  110. /*Hide all except first fieldset*/
  111. #msform fieldset:not(:first-of-type) {
  112. display: none;
  113. }
  114. /*inputs*/
  115. #msform input[type="text"], #msform textarea, #msform input[type="email"] {
  116. padding: 15px;
  117. border: 1px solid #ccc;
  118. border-radius: 3px;
  119. margin-bottom: 16px;
  120. width: 100%;
  121. box-sizing: border-box;
  122. font-family: montserrat;
  123. color: #2C3E50;
  124. font-size: 14px;
  125. }
  126. /*buttons*/
  127. #msform .action-button {
  128. width: 100px;
  129. background: #27AE60;
  130. font-weight: bold;
  131. color: white;
  132. border: 0 none;
  133. border-radius: 1px;
  134. cursor: pointer;
  135. padding: 10px 5px;
  136. margin: 10px auto;
  137. display: inline-block;
  138. }
  139. #msform .action-button:hover, #msform .action-button:focus {
  140. box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
  141. }
  142. /*headings*/
  143. .fs-title {
  144. font-size: 15px;
  145. text-transform: uppercase;
  146. color: #2C3E50;
  147. margin-bottom: 10px;
  148. }
  149. .fs-subtitle {
  150. display: inline-block;
  151. font-weight: normal;
  152. font-size: 13px;
  153. color: #666;
  154. margin-bottom: 20px;
  155. padding-bottom: 3px;
  156. border-bottom: 2px solid #27AE60;
  157. }
  158. .fs-label {
  159. display: block;
  160. text-align: left;
  161. margin-bottom: 8px;
  162. }
  163. .fs-label > i {
  164. margin-right: 3px;
  165. }
  166. /*progressbar*/
  167. #progressbar {
  168. margin-bottom: 30px;
  169. overflow: hidden;
  170. /*CSS counters to number the steps*/
  171. counter-reset: step;
  172. }
  173. #progressbar li {
  174. list-style-type: none;
  175. color: black;
  176. text-transform: uppercase;
  177. font-size: 12px;
  178. width: 33.33%;
  179. float: left;
  180. position: relative;
  181. }
  182. #progressbar li:before {
  183. content: counter(step);
  184. counter-increment: step;
  185. width: 20px;
  186. line-height: 20px;
  187. display: block;
  188. font-size: 12px;
  189. color: #333;
  190. background: white;
  191. border-radius: 3px;
  192. margin: 0 auto 5px auto;
  193. }
  194. /*progressbar connectors*/
  195. #progressbar li:after {
  196. content: '';
  197. width: 100%;
  198. height: 2px;
  199. background: white;
  200. position: absolute;
  201. left: -50%;
  202. top: 9px;
  203. z-index: -1; /*put it behind the numbers*/
  204. }
  205. #progressbar li:first-child:after {
  206. /*connector not needed before the first step*/
  207. content: none;
  208. }
  209. /*marking active/completed steps green*/
  210. /*The number of the step and the connector before it = green*/
  211. #progressbar li.active:before, #progressbar li.active:after{
  212. background: #27AE60;
  213. color: white;
  214. }
  215. p.error-text {
  216. bottom: -23px;
  217. left: 24px;
  218. color: rgba(255, 0, 0, .7);
  219. font-size: .8em;
  220. }
  221. #term-error {
  222. color: rgba(255, 0, 0, .7);
  223. font-size: .8em;
  224. bottom: -23px;
  225. left: 24px;
  226. }
  227. select {
  228. padding: 15px;
  229. border: 1px solid #ccc;
  230. border-radius: 3px;
  231. margin-bottom: 10px;
  232. width: 100%;
  233. box-sizing: border-box;
  234. font-family: montserrat;
  235. color: #2C3E50;
  236. font-size: 13px;
  237. background-color: transparent;
  238. }
  239. .pl-0 {
  240. padding-left: 0;
  241. }
  242. .terms {
  243. font-size: .9rem;
  244. width: 95%;
  245. min-width: 250px;
  246. height: auto;
  247. overflow: scroll;
  248. margin-bottom: 1rem;
  249. margin-left: auto;
  250. margin-right: auto;
  251. border: 1px solid rgb(163, 163, 163);
  252. line-height: 1.5rem;
  253. }
  254. .term-link a {
  255. text-decoration: none;
  256. color: black;
  257. }
  258. .h2 {
  259. text-align: center;
  260. font-size: 1.2rem;
  261. font-weight: 500;
  262. margin-top: 2rem;
  263. }
  264. .left_align {
  265. font-size: 18px;
  266. text-align: left;
  267. }
  268. #overlay {
  269. position: fixed; /* Sit on top of the page content */
  270. display: none;
  271. width: 100%;
  272. height: 100%;
  273. top: 0;
  274. left: 0;
  275. right: 0;
  276. bottom: 0;
  277. background-color: rgba(0,0,0,0.5);
  278. z-index: 2;
  279. cursor: pointer;
  280. }
  281. .thankyou {
  282. margin: auto;
  283. min-width: 350px;
  284. height: 250px;
  285. margin-top: 190px;
  286. background: #fff;
  287. padding: 15px 20px;
  288. line-height: 25px;
  289. border-radius: 4px;
  290. text-align: center;
  291. }
  292. .thankyou input {
  293. margin-top: 40px;
  294. }
  295. .thankyou h3 {
  296. font-size: 2rem;
  297. font-weight: 700;
  298. color: #21ba45;
  299. line-height: 2.5rem;
  300. margin-bottom: 1.5rem;
  301. }
  302. .check_button {
  303. display: none;
  304. }
  305. .fs-label-type {
  306. background: transparent;
  307. padding: 5px;
  308. border: 1px solid black;
  309. border-radius: 5px;
  310. display: inline-block;
  311. }
  312. .check_button:checked + .fs-label-type{
  313. background-color: #27AE60;
  314. color: white;
  315. padding: 5px;
  316. border: 1px solid #27AE60;
  317. border-radius: 5px;
  318. }
  319. input[type="checkbox"] {
  320. display: none;
  321. }
  322. #checker1, #checker2 {
  323. display: inline;
  324. }
  325. .fs-label-info {
  326. background: transparent;
  327. padding: 5px;
  328. border: 1px solid black;
  329. border-radius: 5px;
  330. display: inline-block;
  331. margin-bottom: 8px;
  332. }
  333. input[type="radio"] {
  334. display: none;
  335. }
  336. input[type="radio"]:checked + .fs-label-info {
  337. background-color: #27AE60;
  338. color: white;
  339. padding: 5px;
  340. border: 1px solid #27AE60;
  341. border-radius: 5px;
  342. }
  343. input[type="checkbox"]:checked + .fs-label-info {
  344. background-color: #27AE60;
  345. color: white;
  346. padding: 5px;
  347. border: 1px solid #27AE60;
  348. border-radius: 5px;
  349. }
  350. .btn-exit {
  351. padding: .5rem .75rem;
  352. background-color: transparent;
  353. border: 1px solid black;
  354. margin-top: .3rem;
  355. }
  356. .btn-term-exit {
  357. padding: .5rem .75rem;
  358. background-color: transparent;
  359. border: 1px solid black;
  360. margin-top: .3rem;
  361. display: block;
  362. margin-left: auto;
  363. margin-right: auto;
  364. margin-bottom: 2rem;
  365. }
  366. footer {
  367. padding: 2rem;
  368. padding-top: .5rem;
  369. }
  370. .footer {
  371. display: flex;
  372. justify-content: center;
  373. }
  374. .img_fr {
  375. width: 80%;
  376. max-width: 850px;
  377. min-width: 300px;
  378. height: 60px;
  379. object-fit: contain;
  380. object-position: center;
  381. }
  382. .img_fr img {
  383. width: 100%;
  384. height: 90%;
  385. }
  386. #msform #userid, #msform #area {
  387. height: 0;
  388. padding: 0;
  389. margin: 0;
  390. border: none;
  391. }