style.scss 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377
  1. @charset "UTF-8";
  2. /*custom font*/
  3. @import url(https://fonts.googleapis.com/css?family=Montserrat);
  4. @import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
  5. /*basic reset*/
  6. * {
  7. margin: 0;
  8. padding: 0;
  9. }
  10. html {
  11. min-height: 100%;
  12. height: auto;
  13. /*Image only BG fallback*/
  14. /*background = gradient + image pattern combo*/
  15. /* background:
  16. linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6)); */
  17. }
  18. body {
  19. font-family: "Montserrat", sans-serif;
  20. background-color: white;
  21. font-size: 1.05rem;
  22. }
  23. .ml {
  24. margin-left: 10px;
  25. }
  26. .mr {
  27. margin-right: 10px;
  28. }
  29. .mb {
  30. margin-bottom: 12px;
  31. }
  32. .top {
  33. margin-top: 20px;
  34. position: sticky;
  35. top: 0;
  36. left: 50%;
  37. z-index: 20;
  38. background-color: inherit;
  39. }
  40. .navbar {
  41. background-color: white;
  42. }
  43. /* .imf {
  44. position: fixed;
  45. top: 0;
  46. left: 50%;
  47. transform: translateX(-50%);
  48. z-index: 3;
  49. } */
  50. .img_banner {
  51. background-image: url("images/banner_top1.jpg");
  52. background-repeat: no-repeat;
  53. background-size: contain;
  54. background-position: center;
  55. width: 100%;
  56. height: 65px;
  57. }
  58. /*form styles*/
  59. .img_logo {
  60. display: inline-block;
  61. margin: 0 auto;
  62. margin-bottom: 10px;
  63. }
  64. .title__block {
  65. display: flex;
  66. justify-content: center;
  67. align-items: center;
  68. margin: 0px auto;
  69. }
  70. .sub-logo {
  71. display: inline-block;
  72. font-weight: 700;
  73. font-size: 1.4rem;
  74. color: white;
  75. }
  76. .slogan {
  77. display: block;
  78. font-weight: 700;
  79. font-size: 1.2rem;
  80. color: white;
  81. }
  82. .notice_card {
  83. box-sizing: border-box;
  84. width: 80%;
  85. margin: 0 10%;
  86. margin-bottom: 1.5rem;
  87. background: white;
  88. border: 0 none;
  89. border-radius: 3px;
  90. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  91. padding: 10px 20px;
  92. line-height: 1.5rem;
  93. }
  94. #myProgress {
  95. width: 100%;
  96. background-color: #ddd;
  97. }
  98. #myBar {
  99. width: 10%;
  100. height: 30px;
  101. background-color: #1c7ce0;
  102. text-align: center;
  103. line-height: 30px;
  104. color: white;
  105. }
  106. .go_title {
  107. color: white;
  108. font-family: "Montserrat", sans-serif;
  109. padding: 1rem;
  110. }
  111. .nav-list {
  112. color: white;
  113. margin-top: 3rem;
  114. }
  115. .nav-list-item {
  116. font-size: 1.2rem;
  117. cursor: pointer;
  118. position: relative;
  119. }
  120. .nav-list-item::after {
  121. content: " ";
  122. position: absolute;
  123. width: 100%;
  124. height: 100%;
  125. left: 0;
  126. top: 0;
  127. border-bottom: 1px solid white;
  128. opacity: 0;
  129. transition: all 0.4s;
  130. }
  131. .nav-list-item:hover::after {
  132. opacity: 1;
  133. }
  134. .loader {
  135. position: absolute;
  136. top: 30%;
  137. left: 45%;
  138. }
  139. .imgfr {
  140. width: 90px;
  141. height: 90px;
  142. border-radius: 50%;
  143. overflow: hidden;
  144. margin: 1rem auto 0 auto;
  145. }
  146. .card-title {
  147. font-family: "Montserrat", sans-serif;
  148. }
  149. .strong {
  150. font-weight: 600;
  151. }
  152. .card {
  153. border: none;
  154. position: relative;
  155. }
  156. .card.active {
  157. border: 1px solid gray;
  158. }
  159. .card.active::before {
  160. position: absolute;
  161. content: "✓";
  162. bottom: 0;
  163. right: 5px;
  164. }
  165. .zoomin {
  166. display: none;
  167. position: absolute;
  168. bottom: 0;
  169. left: 0;
  170. }
  171. .script_err {
  172. display: none;
  173. }
  174. /* .history-modal {
  175. height: 80vh;
  176. }
  177. .history-modal .modal-content{
  178. height: 80vh;
  179. }
  180. .history-modal .modal-conten .modal-terms {
  181. height: 90%;
  182. overflow: scroll;
  183. } */
  184. .historyList-item {
  185. padding: 1rem;
  186. display: block;
  187. width: 80%;
  188. margin: 1rem auto;
  189. border: 1px solid rgb(177, 177, 177);
  190. border-radius: 10px;
  191. display: flex;
  192. font-size: 0.9rem;
  193. }
  194. .historyList-link {
  195. text-decoration: none;
  196. color: rgb(73, 73, 73);
  197. }
  198. .historyList-link:hover {
  199. color: rgb(124, 124, 124);
  200. }
  201. .content {
  202. width: calc(100% - 250px);
  203. }
  204. /*form styles*/
  205. #msform {
  206. max-width: 1000px;
  207. min-width: 370px;
  208. margin: 50px auto;
  209. margin-bottom: 20px;
  210. text-align: center;
  211. position: relative;
  212. }
  213. #msform fieldset {
  214. background: white;
  215. border: 0 none;
  216. border-radius: 3px;
  217. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  218. padding: 20px 30px;
  219. box-sizing: border-box;
  220. width: 80%;
  221. margin: 3rem 10%;
  222. /*stacking fieldsets above each other*/
  223. position: relative;
  224. }
  225. /*Hide all except first fieldset*/
  226. /*inputs*/
  227. #msform input[type="text"],
  228. #msform textarea,
  229. #msform input[type="email"] {
  230. padding: 15px;
  231. border: 1px solid #ccc;
  232. border-radius: 3px;
  233. margin-bottom: 16px;
  234. width: 100%;
  235. box-sizing: border-box;
  236. font-family: montserrat;
  237. color: #2c3e50;
  238. font-size: 14px;
  239. }
  240. /*buttons*/
  241. #msform .action-button {
  242. width: 100px;
  243. background: #1c7ce0;
  244. font-weight: bold;
  245. color: white;
  246. border: 0 none;
  247. border-radius: 1px;
  248. cursor: pointer;
  249. padding: 10px 5px;
  250. margin: 10px auto;
  251. display: block;
  252. }
  253. #msform .action-button:hover,
  254. #msform .action-button:focus {
  255. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  256. }
  257. #msform .next[disabled] {
  258. background-color: grey;
  259. }
  260. /*headings*/
  261. .fs-title {
  262. font-size: 15px;
  263. text-transform: uppercase;
  264. color: #2c3e50;
  265. margin-bottom: 10px;
  266. }
  267. .fs-subtitle {
  268. display: inline-block;
  269. font-weight: normal;
  270. font-size: 18px;
  271. color: #666;
  272. margin-bottom: 20px;
  273. padding-bottom: 3px;
  274. border-bottom: 2px solid #1c7ce0;
  275. margin-left: 2rem;
  276. margin-right: 2rem;
  277. }
  278. .fs-label {
  279. display: block;
  280. text-align: left;
  281. margin-bottom: 8px;
  282. }
  283. .fs-label > i {
  284. margin-right: 3px;
  285. }
  286. /*progressbar*/
  287. #progressbar {
  288. margin-bottom: 30px;
  289. overflow: hidden;
  290. /*CSS counters to number the steps*/
  291. counter-reset: step;
  292. }
  293. #progressbar li {
  294. list-style-type: none;
  295. color: black;
  296. text-transform: uppercase;
  297. font-size: 12px;
  298. width: 33.33%;
  299. float: left;
  300. position: relative;
  301. }
  302. #progressbar li:before {
  303. content: counter(step);
  304. counter-increment: step;
  305. width: 20px;
  306. line-height: 20px;
  307. display: block;
  308. font-size: 12px;
  309. color: #333;
  310. background: white;
  311. border-radius: 3px;
  312. margin: 0 auto 5px auto;
  313. }
  314. /*progressbar connectors*/
  315. #progressbar li:after {
  316. content: "";
  317. width: 100%;
  318. height: 2px;
  319. background: white;
  320. position: absolute;
  321. left: -50%;
  322. top: 9px;
  323. z-index: -1; /*put it behind the numbers*/
  324. }
  325. #progressbar li:first-child:after {
  326. /*connector not needed before the first step*/
  327. content: none;
  328. }
  329. /*marking active/completed steps green*/
  330. /*The number of the step and the connector before it = green*/
  331. #progressbar li.active:before,
  332. #progressbar li.active:after {
  333. background: #27ae60;
  334. color: white;
  335. }
  336. p.error-text {
  337. bottom: -23px;
  338. left: 24px;
  339. color: rgba(255, 0, 0, 0.7);
  340. font-size: 0.8em;
  341. margin-bottom: 0;
  342. }
  343. #term-error {
  344. color: rgba(255, 0, 0, 0.7);
  345. font-size: 0.8em;
  346. bottom: -23px;
  347. left: 24px;
  348. }
  349. select {
  350. padding: 15px;
  351. border: 1px solid #ccc;
  352. border-radius: 3px;
  353. margin-bottom: 10px;
  354. width: 100%;
  355. box-sizing: border-box;
  356. font-family: montserrat;
  357. color: #2c3e50;
  358. font-size: 13px;
  359. background-color: transparent;
  360. }
  361. .pl-0 {
  362. padding-left: 0;
  363. }
  364. .terms {
  365. font-size: 0.9rem;
  366. width: 95%;
  367. min-width: 250px;
  368. height: auto;
  369. overflow: scroll;
  370. margin-bottom: 1rem;
  371. margin-left: auto;
  372. margin-right: auto;
  373. border: 1px solid rgb(163, 163, 163);
  374. line-height: 1.5rem;
  375. }
  376. .term-link a {
  377. text-decoration: none;
  378. color: black;
  379. }
  380. .h2 {
  381. text-align: center;
  382. font-size: 1.2rem;
  383. font-weight: 500;
  384. margin-top: 2rem;
  385. }
  386. .left_align {
  387. font-size: 18px;
  388. text-align: left;
  389. }
  390. #overlay {
  391. position: fixed; /* Sit on top of the page content */
  392. display: none;
  393. width: 100%;
  394. height: 100%;
  395. top: 0;
  396. left: 0;
  397. right: 0;
  398. bottom: 0;
  399. background-color: rgba(0, 0, 0, 0.5);
  400. z-index: 2;
  401. cursor: pointer;
  402. }
  403. .thankyou {
  404. margin: auto;
  405. min-width: 350px;
  406. height: 250px;
  407. margin-top: 190px;
  408. background: #fff;
  409. padding: 15px 20px;
  410. line-height: 25px;
  411. border-radius: 4px;
  412. text-align: center;
  413. }
  414. .thankyou input {
  415. margin-top: 40px;
  416. }
  417. .thankyou h3 {
  418. font-size: 2rem;
  419. font-weight: 700;
  420. color: #21ba45;
  421. line-height: 2.5rem;
  422. margin-bottom: 1.5rem;
  423. }
  424. .check_button {
  425. display: none;
  426. }
  427. .fs-label-type {
  428. background: transparent;
  429. padding: 5px;
  430. border: 1px solid black;
  431. border-radius: 5px;
  432. display: inline-block;
  433. }
  434. .check_button:checked + .fs-label-type {
  435. background-color: #27ae60;
  436. color: white;
  437. padding: 5px;
  438. border: 1px solid #27ae60;
  439. border-radius: 5px;
  440. }
  441. #checker1,
  442. #checker2 {
  443. display: inline;
  444. }
  445. .fs-label-info {
  446. background: transparent;
  447. padding: 5px;
  448. border: 1px solid black;
  449. border-radius: 5px;
  450. display: inline-block;
  451. margin-bottom: 8px;
  452. }
  453. input[type="radio"] {
  454. display: none;
  455. }
  456. input[type="radio"]:checked + .fs-label-info {
  457. background-color: #27ae60;
  458. color: white;
  459. padding: 5px;
  460. border: 1px solid #27ae60;
  461. border-radius: 5px;
  462. }
  463. input[type="checkbox"]:checked + .fs-label-info {
  464. background-color: #27ae60;
  465. color: white;
  466. padding: 5px;
  467. border: 1px solid #27ae60;
  468. border-radius: 5px;
  469. }
  470. .btn-exit {
  471. padding: 0.5rem 0.75rem;
  472. background-color: transparent;
  473. border: 1px solid black;
  474. margin-top: 0.3rem;
  475. }
  476. .btn-term-exit {
  477. padding: 0.5rem 0.75rem;
  478. background-color: transparent;
  479. border: 1px solid black;
  480. margin-top: 0.3rem;
  481. display: block;
  482. margin-left: auto;
  483. margin-right: auto;
  484. margin-bottom: 2rem;
  485. }
  486. footer {
  487. padding: 2rem;
  488. padding-top: 0.5rem;
  489. }
  490. .footer {
  491. display: flex;
  492. justify-content: center;
  493. }
  494. .img_fr {
  495. width: 80%;
  496. max-width: 850px;
  497. min-width: 300px;
  498. height: 60px;
  499. object-fit: contain;
  500. object-position: center;
  501. }
  502. .img_fr img {
  503. width: 100%;
  504. height: 90%;
  505. }
  506. #msform #userid,
  507. #msform #area {
  508. height: 0;
  509. padding: 0;
  510. margin: 0;
  511. border: none;
  512. }
  513. #msform input[type="text"].error {
  514. border-color: red;
  515. }
  516. .modal-header {
  517. border-bottom: none;
  518. }
  519. #avatarmega .modal-content {
  520. background-color: transparent;
  521. border: none;
  522. }
  523. #avatarmega .modal-title {
  524. color: white;
  525. }
  526. #avatarmega .btn-close {
  527. background: none;
  528. }
  529. #avatarmega .modal-header {
  530. position: absolute;
  531. top: -0.5rem;
  532. right: 1.5rem;
  533. }
  534. .linker__box {
  535. padding: 0.5rem 1rem;
  536. border-radius: 1rem;
  537. box-shadow: 1px 1px 5px 1px rgb(201, 201, 201);
  538. width: max-content;
  539. margin: 0 auto;
  540. display: none;
  541. }
  542. .linker__box p {
  543. margin-bottom: 0;
  544. color: gray;
  545. }
  546. .linker__box i {
  547. color: gray;
  548. position: relative;
  549. }
  550. .linker__box i::after {
  551. position: absolute;
  552. content: " ";
  553. right: -5px;
  554. top: -10%;
  555. border-right: 2px solid rgb(163, 163, 163);
  556. width: 1px;
  557. height: 120%;
  558. }
  559. .item_imgfr {
  560. width: 15%;
  561. height: 50px;
  562. border-radius: 50%;
  563. overflow: hidden;
  564. margin: auto 0.5rem;
  565. }
  566. .item_imgfr img {
  567. height: 100%;
  568. width: 100%;
  569. }
  570. .content-box {
  571. width: 75%;
  572. }
  573. .box-title {
  574. margin-bottom: 0.2rem;
  575. cursor: pointer;
  576. }
  577. .box-title:hover {
  578. color: grey;
  579. text-decoration: underline;
  580. }
  581. .box-link {
  582. cursor: pointer;
  583. }
  584. .img_uploader {
  585. display: none;
  586. }
  587. #msform input[type="text"].imgsrc {
  588. width: calc(100% - 8rem);
  589. margin-right: 5px;
  590. }
  591. .upload-btn {
  592. display: inline-block;
  593. width: 6rem;
  594. background-color: #75a7dd;
  595. color: white;
  596. padding: 0.4rem 0.5rem;
  597. font-size: 0.9rem;
  598. border-radius: 3px;
  599. transition: all 0.3s;
  600. cursor: pointer;
  601. }
  602. .upload-btn img {
  603. width: 30px;
  604. height: 30px;
  605. }
  606. .upload-btn:hover {
  607. background-color: #3b86d6;
  608. }
  609. .add,
  610. .addimg {
  611. cursor: pointer;
  612. display: inline-block;
  613. width: 2rem;
  614. height: 2rem;
  615. background-color: #67abf3;
  616. font-size: 1.2rem;
  617. color: white;
  618. border-radius: 50%;
  619. transition: all 0.3s;
  620. }
  621. .add:hover,
  622. .addimg:hover {
  623. background-color: #398ee9;
  624. }
  625. body {
  626. font-family: "Lato", sans-serif;
  627. }
  628. .sidenav {
  629. height: 100%;
  630. width: 250px;
  631. position: fixed;
  632. z-index: 1;
  633. top: 0;
  634. left: 0;
  635. background: linear-gradient(to bottom, #1c7ce0, #150051);
  636. overflow-x: hidden;
  637. transition: 0.5s;
  638. }
  639. .sidenav a {
  640. text-decoration: none;
  641. font-size: 25px;
  642. color: #818181;
  643. display: block;
  644. transition: 0.3s;
  645. }
  646. .sidenav a:hover {
  647. color: #f1f1f1;
  648. }
  649. .sidenav .closebtn {
  650. position: absolute;
  651. top: 0;
  652. right: 25px;
  653. font-size: 36px;
  654. margin-left: 50px;
  655. }
  656. .container-login {
  657. width: 100vw;
  658. height: 100vh;
  659. display: grid;
  660. grid-template-columns: repeat(2, 1fr);
  661. grid-gap: 7rem;
  662. padding: 0rem;
  663. }
  664. .navbar-nav button {
  665. background: white;
  666. border: none;
  667. outline: none;
  668. }
  669. .img-wave {
  670. position: fixed;
  671. bottom: 0;
  672. left: 0;
  673. height: 100%;
  674. z-index: -1;
  675. }
  676. .img-wave-profile {
  677. height: 80%;
  678. }
  679. .row-img {
  680. position: relative;
  681. display: flex;
  682. justify-content: center;
  683. align-items: center;
  684. background-image: linear-gradient(to right bottom, rgba(#10448e, 0.7), rgba(#10448e, 0.7));
  685. background-size: cover;
  686. background-position: center;
  687. overflow: hidden;
  688. .video {
  689. height: 100%;
  690. z-index: -1;
  691. position: absolute;
  692. left: -10%;
  693. top: 0;
  694. }
  695. .row-img-box {
  696. color: white;
  697. }
  698. .row-img-txt {
  699. position: absolute;
  700. bottom: 2rem;
  701. color: white;
  702. left: 2rem;
  703. font-size: 1.3rem;
  704. }
  705. }
  706. .row-login {
  707. display: flex;
  708. justify-content: flex-start;
  709. align-items: center;
  710. text-align: center;
  711. position: relative;
  712. .title {
  713. position: relative;
  714. color: #052859;
  715. &::after {
  716. position: absolute;
  717. content: "";
  718. left: 45%;
  719. top: 20%;
  720. width: 10%;
  721. height: 100%;
  722. border-bottom: 4px solid #052859;
  723. }
  724. }
  725. .login-top {
  726. position: absolute;
  727. right: 1rem;
  728. top: 1rem;
  729. .navbar-nav {
  730. flex-direction: row;
  731. .nav-item {
  732. margin: 0 0.5rem;
  733. a {
  734. color: black;
  735. }
  736. }
  737. }
  738. }
  739. }
  740. .login-content {
  741. width: 80%;
  742. min-width: 350px;
  743. box-shadow: 0 0 12px 5px rgb(221, 221, 221);
  744. padding: 1.5rem;
  745. border-radius: 2rem;
  746. }
  747. .link_privacy {
  748. color: black;
  749. }
  750. .login-content img {
  751. height: 80px;
  752. }
  753. .row-img img {
  754. width: 450px;
  755. }
  756. .login-content .form-floating input {
  757. border: none;
  758. border-bottom: 2px solid #d9d9d9;
  759. border-radius: 0;
  760. }
  761. .login-content .form-floating input:focus {
  762. box-shadow: none;
  763. }
  764. .login-content #btn_login {
  765. background: linear-gradient(90deg, #0162c8, #55e7fc);
  766. font-weight: bold;
  767. color: white;
  768. border: 0 none;
  769. border-radius: 40px;
  770. cursor: pointer;
  771. padding: 10px 50px;
  772. margin: 10px auto;
  773. display: block;
  774. }
  775. .login-content #btn_login:hover {
  776. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  777. }
  778. .login-content .btn-register {
  779. background: linear-gradient(90deg, #0162c8, #55e7fc);
  780. font-weight: bold;
  781. color: white;
  782. border: 0 none;
  783. border-radius: 40px;
  784. cursor: pointer;
  785. padding: 10px 50px;
  786. margin: 10px auto;
  787. display: block;
  788. }
  789. .login-content .btn-register:hover {
  790. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  791. }
  792. .login-content .nav-tabs {
  793. border-bottom: none;
  794. }
  795. .login-content .nav {
  796. flex-direction: column;
  797. align-items: center;
  798. }
  799. .login-content .nav-tabs .nav-link {
  800. color: grey;
  801. }
  802. .login-content .nav-tabs .nav-link.active {
  803. border-color: #fff;
  804. text-transform: uppercase;
  805. color: black;
  806. }
  807. .navbar .btn-gocreate {
  808. background: linear-gradient(90deg, #0162c8, #55e7fc);
  809. color: white;
  810. border: 0 none;
  811. border-radius: 40px;
  812. cursor: pointer;
  813. padding: 10px 50px;
  814. }
  815. .container-profile {
  816. width: 100vw;
  817. height: 100vh;
  818. overflow-y: hidden;
  819. }
  820. .container-bg {
  821. position: absolute;
  822. width: 600px;
  823. height: 400px;
  824. right: 0;
  825. bottom: 0;
  826. }
  827. .container-profile .card-profile {
  828. width: 30%;
  829. min-width: 320px;
  830. margin: auto;
  831. margin-top: 4rem;
  832. border-radius: 10px;
  833. padding: 2rem;
  834. text-align: center;
  835. box-shadow: 0px 0px 20px 1px rgb(180, 180, 180);
  836. }
  837. .container-profile .card-profile img {
  838. width: 120px;
  839. margin: 1rem auto;
  840. }
  841. .card-profile-txt {
  842. color: rgb(109, 109, 109);
  843. font-size: 1.2rem;
  844. font-weight: 500;
  845. }
  846. .card-profile-cnt {
  847. font-size: 1.5rem;
  848. font-weight: 700;
  849. }
  850. @media screen and (max-width: 900px) {
  851. .container-login {
  852. grid-template-columns: 1fr;
  853. }
  854. .row-img {
  855. display: none;
  856. }
  857. .img-wave {
  858. display: none;
  859. }
  860. .row-login {
  861. justify-content: center;
  862. }
  863. .container-bg {
  864. width: 400px;
  865. height: 300px;
  866. right: 0;
  867. bottom: 0;
  868. }
  869. }
  870. @media screen and (max-height: 450px) {
  871. .sidenav {
  872. padding-top: 15px;
  873. }
  874. .sidenav a {
  875. font-size: 18px;
  876. }
  877. }
  878. /* Pricing */
  879. .pricingTable {
  880. background: #fff;
  881. font-family: "Open Sans", sans-serif;
  882. text-align: center;
  883. padding: 30px 15px 15px;
  884. border-radius: 25px;
  885. overflow: hidden;
  886. position: relative;
  887. z-index: 1;
  888. }
  889. .pricingTable:before,
  890. .pricingTable:after {
  891. content: "";
  892. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  893. height: 170px;
  894. width: 150%;
  895. outline: 5px solid #fff;
  896. outline-offset: -10px;
  897. opacity: 0.9;
  898. transform: translateX(-50%) rotate(7deg);
  899. position: absolute;
  900. left: 50%;
  901. top: -65px;
  902. z-index: -1;
  903. }
  904. .pricingTable:after {
  905. height: 250px;
  906. transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  907. top: auto;
  908. bottom: -150px;
  909. }
  910. .pricingTable .pricingTable-header {
  911. color: #fff;
  912. margin: 0 0 75px;
  913. }
  914. .pricingTable .title {
  915. font-size: 40px;
  916. font-weight: 700;
  917. text-transform: uppercase;
  918. letter-spacing: 1px;
  919. margin: 0;
  920. }
  921. .pricingTable .pricing-content {
  922. text-align: left;
  923. padding: 0;
  924. margin: 0 0 10px;
  925. display: inline-block;
  926. }
  927. .pricingTable .pricing-content li {
  928. color: #333;
  929. font-size: 17px;
  930. font-weight: 500;
  931. line-height: 22px;
  932. text-transform: uppercase;
  933. padding: 0 40px 0 0;
  934. margin: 0 0 15px;
  935. list-style-position: inside;
  936. position: relative;
  937. }
  938. .pricingTable .pricing-content li:after {
  939. content: "\f00c";
  940. color: #e58e26;
  941. font-family: "Font Awesome 5 Free";
  942. font-size: 18px;
  943. font-weight: 900;
  944. position: absolute;
  945. top: 0;
  946. right: 0;
  947. }
  948. .pricingTable .pricing-content li.disable:after {
  949. content: "\f00d";
  950. }
  951. .pricingTable .price-value {
  952. margin: 0 0 15px;
  953. }
  954. .pricingTable .price-title {
  955. color: #c70039;
  956. font-size: 30px;
  957. text-align: left;
  958. text-transform: uppercase;
  959. line-height: 30px;
  960. width: calc(100% - 130px);
  961. padding: 15px 0 0;
  962. display: inline-block;
  963. }
  964. .pricingTable .price-title b {
  965. display: block;
  966. }
  967. .pricingTable .price-amount {
  968. color: #3f64fa;
  969. background: #fff;
  970. font-size: 30px;
  971. font-weight: 700;
  972. line-height: 30px;
  973. width: 120px;
  974. height: 120px;
  975. padding: 33px 10px 10px;
  976. display: inline-block;
  977. vertical-align: top;
  978. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  979. position: relative;
  980. z-index: 1;
  981. }
  982. .pricingTable .price-amount:before,
  983. .pricingTable .price-amount:after {
  984. content: "";
  985. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  986. width: calc(100% - 12px);
  987. height: calc(100% - 12px);
  988. transform: translateX(-50%) translateY(-50%);
  989. position: absolute;
  990. top: 50%;
  991. left: 50%;
  992. z-index: -1;
  993. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  994. }
  995. .pricingTable .price-amount:after {
  996. background: #fff;
  997. width: calc(100% - 16px);
  998. height: calc(100% - 16px);
  999. }
  1000. .pricingTable .price-amount .duration {
  1001. font-size: 16px;
  1002. font-weight: 600;
  1003. text-transform: capitalize;
  1004. display: block;
  1005. }
  1006. .pricingTable .pricingTable-signup a {
  1007. color: #fff;
  1008. font-size: 20px;
  1009. font-weight: 700;
  1010. letter-spacing: 2px;
  1011. text-transform: uppercase;
  1012. padding: 10px 20px;
  1013. border: 2px solid #fff;
  1014. border-radius: 50px;
  1015. display: inline-block;
  1016. transition: all 0.3s;
  1017. }
  1018. .pricingTable .pricingTable-signup a:hover {
  1019. text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.5);
  1020. box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1021. }
  1022. .pricingTable.green:before,
  1023. .pricingTable.green:after,
  1024. .pricingTable.green .price-amount:before {
  1025. background: linear-gradient(-45deg, #76d243, #76d243, #109739, #109739);
  1026. }
  1027. .pricingTable.green .price-amount {
  1028. color: #109739;
  1029. }
  1030. .pricingTable.pink:before,
  1031. .pricingTable.pink:after,
  1032. .pricingTable.pink .price-amount:before {
  1033. background: linear-gradient(-45deg, #e969a6, #e969a6, #ed2e96, #ed2e96);
  1034. }
  1035. .pricingTable.pink .price-amount {
  1036. color: #ed2e96;
  1037. }
  1038. @media only screen and (max-width: 990px) {
  1039. .pricingTable {
  1040. margin: 0 0 40px;
  1041. }
  1042. }
  1043. // 側邊欄選單
  1044. .sidenav {
  1045. height: 100%;
  1046. width: 250px;
  1047. position: fixed;
  1048. z-index: 1;
  1049. top: 0;
  1050. left: 0;
  1051. background: linear-gradient(to bottom, #1c7ce0, #150051);
  1052. overflow-x: hidden;
  1053. transition: 0.5s;
  1054. text-align: center;
  1055. hr {
  1056. background: #fff;
  1057. opacity: 1 !important;
  1058. height: 1px;
  1059. width: 85%;
  1060. margin: 15px auto;
  1061. }
  1062. .sidebar {
  1063. width: 80%;
  1064. margin: 0 auto;
  1065. }
  1066. .user {
  1067. object-fit: cover;
  1068. width: 100px;
  1069. }
  1070. .user-name {
  1071. font-size: 1.5rem;
  1072. }
  1073. .navbar-nav {
  1074. flex-direction: row;
  1075. .btn-gocreate {
  1076. font-size: 14px;
  1077. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1078. // background:#31426C;
  1079. color: white;
  1080. border: 0 none;
  1081. border-radius: 10px;
  1082. cursor: pointer;
  1083. margin: 10px 3px;
  1084. display: inline;
  1085. }
  1086. .active {
  1087. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1088. }
  1089. }
  1090. a {
  1091. text-decoration: none;
  1092. font-size: 32px;
  1093. color: #f1f1f1;
  1094. display: block;
  1095. transition: 0.3s;
  1096. &:hover {
  1097. color: #818181;
  1098. }
  1099. }
  1100. .sidenav .closebtn {
  1101. position: absolute;
  1102. top: 0;
  1103. right: 25px;
  1104. font-size: 36px;
  1105. margin-left: 50px;
  1106. }
  1107. .nav-list {
  1108. color: white;
  1109. list-style: none;
  1110. text-align: center;
  1111. .nav-list-item {
  1112. font-size: 1.2rem;
  1113. cursor: pointer;
  1114. position: relative;
  1115. }
  1116. .nav-list-item::after {
  1117. content: " ";
  1118. position: absolute;
  1119. width: 50%;
  1120. height: 100%;
  1121. left: 25%;
  1122. top: 5px;
  1123. border-bottom: 1px solid white;
  1124. opacity: 0;
  1125. transition: all 0.4s;
  1126. }
  1127. .nav-list-item:hover::after {
  1128. opacity: 1;
  1129. }
  1130. }
  1131. .right-text {
  1132. padding-top: 9vw;
  1133. color: #fff;
  1134. a {
  1135. font-size: 18px;
  1136. display: inline;
  1137. margin: 2px;
  1138. img {
  1139. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1140. }
  1141. }
  1142. }
  1143. }
  1144. // 首頁價格介紹
  1145. .price-int {
  1146. padding-bottom: 10vw;
  1147. .price-content {
  1148. width: 80vw;
  1149. @media screen and(max-width:767px) {
  1150. width: 90vw;
  1151. }
  1152. h1 {
  1153. text-align: center;
  1154. font-weight: 900;
  1155. font-size: 2rem;
  1156. }
  1157. .price-content-1 {
  1158. margin-top: 50px;
  1159. h2 {
  1160. margin-top: 15px;
  1161. font-weight: 600;
  1162. font-size: 1.3rem;
  1163. @media screen and(max-width:767px) {
  1164. font-size: 5.5vmin;
  1165. }
  1166. }
  1167. ul {
  1168. text-align: left;
  1169. li {
  1170. list-style-type: disc;
  1171. @media screen and(max-width:767px) {
  1172. font-size: 4.5vmin;
  1173. }
  1174. }
  1175. }
  1176. .price-text{
  1177. padding-left: 80px;
  1178. }
  1179. }
  1180. .get-started{
  1181. border:none;
  1182. border-radius: 3rem;
  1183. padding: 1rem 2.5rem;
  1184. background: linear-gradient(20deg, #EA5413, #920783);
  1185. color:#fff;
  1186. font-size: 1.2rem;
  1187. font-weight: 900;
  1188. }
  1189. p{
  1190. font-size: 24px;
  1191. }
  1192. }
  1193. }
  1194. // 頁尾
  1195. .footer {
  1196. background-color: #F0F0F0;
  1197. padding:3rem;
  1198. padding-left: 13rem;
  1199. @media screen and(max-width:767px) {
  1200. padding: 0.5rem;
  1201. text-align: center;
  1202. padding-top: 3rem;
  1203. padding-left:0;
  1204. }
  1205. h5{
  1206. font-size: 16px;
  1207. font-weight: 700;
  1208. color:#555555;
  1209. }
  1210. }
  1211. .footer .row{
  1212. display: flex;
  1213. align-items: center;
  1214. }
  1215. .footer .footer-aigirl {
  1216. font-weight: 600;
  1217. font-size: 1.5rem;
  1218. margin-top: 1rem;
  1219. margin-bottom: 2.5rem;
  1220. color:#555555;
  1221. @media screen and(max-width:767px) {
  1222. font-size: 1.3rem;
  1223. margin-bottom: 2rem;
  1224. }
  1225. }
  1226. .footer .footer-follow {
  1227. font-size: 1rem;
  1228. margin-bottom: 1rem;
  1229. }
  1230. .footer-socials{
  1231. @media screen and(max-width:767px) {
  1232. margin-bottom: 2rem;
  1233. }
  1234. }
  1235. .footer .footer-socials a{
  1236. margin-right: 5px;
  1237. @media screen and(max-width:767px) {
  1238. margin-right: 10px;
  1239. }
  1240. }
  1241. .footer-contacts{
  1242. @media screen and(max-width:767px) {
  1243. font-size: 14px;
  1244. }
  1245. }