* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

.common::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
}

/* font */

/* font-family: 'Poppins', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/* common css */
:root {
  --white-color: #ffffff;
  --yellow-color: #ffc107;
  --black-color: #000000;
  --purple-color: #9920bd;


  --yellow: #f5e930;
  --gray: #c6cad0;
  --dark-gray: #152234;
  --white: #fff;
}

body {
  font-size: 16px;
  font-weight: 400;
  background-color: #111a21;
  font-family: "Poppins", sans-serif;
}

body.show {
  position: fixed;
  top: 0;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  text-transform: capitalize;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #bfbfc1;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: #bfbfc1;
}

/* h1 {
  font-size: 60px;
} */

h2 {
  font-size: 40px;
} 

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #bfbfc1;
}

p:last-child {
  margin-bottom: 0;
}

p span {
  color: var(--white-color);
}

p a {
  color: var(--gray-color);
  font-size: inherit;
  font-family: inherit;
}

p a:hover {
  color: var(--gray-color);
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  line-height: 1.2;
  color: var(--black-color);
}

a:hover {
  color: var(--black-color);
}

span {
  display: inline-block;
}

section {
  padding: 80px 0;
  overflow: hidden;
}

footer {
  margin-top: 30px;
}

.mobile {
  display: none !important;
}

.desktop {
  display: block !important;
}

.bg {
  background: var(--gray-color);
}

img,
video {
  max-width: 100%;
}

.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 10px;
}

.black-btn {
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow-color);
  background-color: var(--black-color);
  border: 1px solid var(--white-color);
  border-radius: 8px;
  padding: 5px 26px;
  display: inline-block;
  text-transform: uppercase;
}

.btn-yellow {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-color);
  border-radius: 8px;
  padding: 5px 26px;
  display: inline-block;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    rgba(243, 228, 46, 1) 0%,
    rgba(248, 192, 36, 1) 100%
  );
}

.btn-yellow i {
  font-size: 16px;
  margin-right: 8px;
}

.black-btn:hover {
  color: var(--yellow-color);
}

/* header css start */
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.header .click-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 222;
  width: 30px;
  height: 33px;
  left: 0;
  top: 0;
}

.header .click-menu span {
  width: 40px;
  height: 4px;
  background: var(--white-color);
  display: block;
  margin: 6px 0;
  border-radius: 10px;
  transition: 0.5s all;
}

.header .click-menu.show span:nth-child(2) {
  display: none;
}

/*main wrapper */

#main-wrapper {
  width: 100%;
}

td,
th {
  white-space: nowrap;
}

/* header css */

.mobile-header {
  display: none;
}

.header {
  display: flex;
  padding: 10px 0;
  color: var(--white-color);
  background-color: #1a1a22;
}

.header .logo-box a {
  display: inline-block;
}

.header .logo-box img {
  width: 100%;
  max-width: 210px;
}

.header .head-left {
  display: flex;
  align-items: center;
  padding: 0 10px;
  width: 15%;
  justify-content: center;
}

.header .head-right {
  display: flex;
  flex-wrap: wrap;
  width: 85%;
}

.header .head-right-top {
  display: flex;
  align-items: center;
  width: 100%;
}

.header .head-r-t-lft {
  width: 55%;
}

.header .notification {
  display: flex;
  align-items: center;
  background-color: var(--black-color);
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 16px;
  max-width: 940px;
}

.header .notification i {
  padding: 6px;
  background-color: var(--black-color);
}

.header .head-r-t-rgt {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 45%;
  margin-right: 20px;
}

.header .form-group {
  display: inline-block;
}

.header .form-group p {
  font-size: 9px;
  line-height: 20px;
}

.header .form-check label {
  font-size: 9px;
  margin-top: 4px;
  margin-left: 6px;
}

.header .agree-box {
  line-height: 10px;
}

.header .form .form-control {
  font-size: 12px;
  color: #535359 !important;
  max-width: 160px;
  padding: 10px 10px;
  background-color: #282833;
  border: none;
}

.header .form-check {
  padding-left: 1.1em;
  display: inline-flex;
}

.header .form-check-input[type="checkbox"] {
  border-radius: 0;
}

.header .form-check .form-check-input {
  margin-left: -1em;
}

.header .form-check-input {
  width: 8px;
  height: 8px;
  margin-top: 6px;
}

.header .borders {
  margin: 2px 6px;
  background: #535359;
  height: 38px;
  width: 2px;
}

.header .head-right-btm {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(243, 228, 46, 1) 0%,
    rgba(248, 192, 36, 1) 100%
  );
  position: relative;
  padding: 3px 0;
}

.header .head-right-btm::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  background: rgb(245, 235, 48);
  background: linear-gradient(
    180deg,
    rgba(243, 228, 46, 1) 0%,
    rgba(248, 192, 36, 1) 100%
  );
  height: 100%;
  z-index: 0;
  width: 40px;
  transform: skew(-40deg);
}

.header .head-right-btm .navigation-left {
  margin-left: 46px;
}

.header .head-right-btm .navigation-left ul li {
  display: inline-block;
  padding: 5px;
}

.header .head-right-btm .navigation-left ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--black-color);
  padding: 6px;
}

.header .head-right-btm .navigation-left ul li a i {
  font-size: 8px;
  margin-right: 6px;
  vertical-align: middle;
}
.header .navigation-right {
  display: flex;
  align-items: center;
}

.header .android-box {
  padding: 0 18px;
}

.header .android-box a {
  font-size: 16px;
  font-weight: 600;
}

.header .android-box a img {
  width: 24px;
  height: auto;
  margin-right: 6px;
}

.header .search-box {
  position: relative;
}

.header .search-box i {
  color: #535359;
  position: absolute;
  right: 0;
  top: 0;
  padding: 9px;
}

.header .search-box .form-control {
  font-size: 12px;
  color: #535359 !important;
  max-width: 160px;
  background-color: #282833;
  border: none;
  padding: 8px 32px 8px 10px;
  border-radius: 8px;
}

.header .form-control:focus {
  background-color: #282833;
  border-color: transparent;
  box-shadow: none;
}

.header .head-r-t-rgt .form-inn {
  display: flex;
  padding-top: 24px;
}

/* header end */

/* sidebar */

.left-sidebar {
  background-color: #0e1317;
  padding: 20px 0;
  height: 100%;
}

.left-sidebar .icon-box {
  background-color: #1c262c;
  padding: 10px 8px;
}

.left-sidebar .icon-box img {
  max-width: 60px;
  width: 100%;
}

.left-sidebar .icon-box ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.left-sidebar .icon-box ul li a {
  padding: 5px;
}

.left-sidebar .upcoming-box {
  padding: 16px 26px;
}

.left-sidebar .upcoming-title {
  font-size: 16px;
  color: #b5cfe5;
  padding: 20px 20px;
}

.left-sidebar .upcoming-title img {
  max-width: 28px;
  height: auto;
  margin-right: 4px;
}

.left-sidebar .upcoming-box .upcoming-nav ul li {
  margin-bottom: 8px;
}

.left-sidebar .upcoming-box .upcoming-nav ul li a img {
  max-width: 28px;
  height: auto;
  margin-right: 14px;
}

.left-sidebar .upcoming-box .upcoming-nav ul li a {
  display: flex;
  padding: 12px 10px;
  background-color: #1b242d;
  border-radius: 8px;
}

.left-sidebar .upcoming-box .upcoming-nav ul li a .up-con span {
  display: block !important;
  font-size: 11px !important;
  color: #7a90a3 !important;
  font-weight: 500;
}
.left-sidebar .upcoming-box .upcoming-nav ul li a .up-con span.big {
  display: block !important;
  font-size: 13px !important;
  color: #b5cfe5 !important;
}

.left-sidebar .sport-title {
  font-size: 16px;
  color: #b5cfe5;
  padding: 10px 20px;
}

.left-sidebar .sport-title img {
  max-width: 36px;
  height: auto;
  margin-right: 4px;
}

.left-sidebar .sport-box .sport-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  padding: 12px 16px;
  transition: 0.5s all;
}

.left-sidebar .sport-box .sport-nav ul li a:hover {
  color: #fbb714;
  background-color: #1b242d;
}

.left-sidebar .sport-nav {
  margin: 0 16px;
}

.left-sidebar .sport-box .sport-nav ul li a img {
  max-width: 18px;
  height: auto;
  margin-right: 12px;
}

.left-sidebar .sport-box .sport-nav ul li a {
  color: #b5cfe5 !important;
}

.left-sidebar .sport-box .sport-nav ul li a .sp-con span {
  display: block !important;
  font-size: 10px !important;
  color: var(--white-color);
  background-color: #fe0000;
  padding: 4px 6px;
}

.left-sidebar .sport-box .sport-nav ul li {
  margin-bottom: 8px;
}

.left-sidebar .menu-card {
  padding: 20px 18px;
}

.left-sidebar .menu-card img {
  box-shadow: 0 -1px 1px 1px #fffee0;
  border-radius: 8px;
}

/* sidebar end */

/* slider */

.home-slider {
  margin-bottom: 25px;
}

/* slider end */

/* tabing */

.tabing-main .tab-content {
  margin: 0 10px;
  padding: 10px 0;
}

.tabing-main table {
  border: 1px solid #34424d;
  border-radius: 10px;
}

.tabing-main table thead tr th {
  font-size: 16px;
  color: #b5cfe5 !important;
  background: #1d262d;
  padding: 12px 20px !important;
  border-bottom: 1px solid #34424d;
}

.tabing-main table tbody tr td {
  font-size: 16px;
  color: #7a90a3 !important;
  background: #14191d;
  padding: 12px 20px !important;
}
.tabing-main table tbody tr td.c-diff {
  color: #b5cfe5 !important;
}

.tabing-main {
  background-color: #181f25;
  border-radius: 12px;
  margin-bottom: 30px;
  overflow: hidden;
}

.blue-bg {
  color: var(--black-color);
  background-color: #72bbee;
  padding: 3px 14px;
  width: 60px;
  display: inline-block;
  font-weight: 700;
}

.pink-bg {
  color: var(--black-color);
  background-color: #f995bb;
  padding: 3px 14px;
  width: 60px;
  display: inline-block;
  font-weight: 700;
}

.border-bg {
  color: var(--white-color);
  padding: 3px 14px;
  width: 60px;
  background-color: #1a1a22;
  border: 1px solid #2f3942;
  display: inline-block;
  font-weight: 700;
}

.nav-tabs .nav-link.active {
  font-weight: 600;
  color: #b5cfe5 !important;
  background-color: transparent;
  border-color: transparent !important;
  border-bottom: 4px solid var(--yellow-color) !important;
  position: relative;
}

/* .nav-tabs .nav-link.active .nav-link:before {
  position: absolute;
  content: "";
  background: #fb742b;
  width: 150px;
  height: 3px;
  bottom: 0;
  left: 0;
} */

.tab-menu {
  border-bottom: 1px dotted #dee2e6;
  margin-bottom: 30px;
}

.nav-tabs {
  border-bottom: none;
}

.tabing-main .tab-menu .nav {
  max-width: 1420px;
  margin: 0 auto;
  
}

.tabing-main.desktop .tab-menu .nav {
  justify-content: space-between;
}

.tabing-main .tab-menu .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #7a90a3;
  padding: 26px 2px;
}

.tabing-main .tab-menu .nav-link span {
  font-size: 8px;
  background-color: var(--black-color);
  vertical-align: middle;
  padding: 3px 8px;
  border-radius: 50px;
  margin-left: 4px;
}

.nav-tabs .nav-link:hover {
  border-color: transparent !important;
}

.nav-tabs .nav-link.active:hover {
  border-bottom-color: var(--yellow-color) !important;
}

.table-main {
  position: relative;
  margin-bottom: 20px;
}

.bg-green {
  background-color: #72c132;
}

.bg-red {
  background-color: #fe0000;
}

.table-main .match-status {
  font-weight: 600;
  position: absolute;
  left: -18px;
  top: 64%;
  transform: rotate(-90deg);
  height: auto;
  width: auto;
  font-size: 10px;
  color: var(--white-color);
  padding: 3px 10px;
}

/* tabing end */

.launched-box,
.live-casino-box,
.slot-games-box {
  background-color: #181f25;
  border-radius: 12px;
  padding: 10px 10px 20px 10px;
  margin-bottom: 30px;
}

.title-box-main {
  margin: 30px 0 20px 0;
  background: #14191d;
  display: inline-block;
  border: 2px solid #34424d;
  text-transform: capitalize;
  padding: 8px 20px;
  border-radius: 10px;
  position: relative;
  min-width: 230px;
}

.title-box-main .title-box {
  font-size: 20px;
  font-weight: 500;
  color: #b5cfe5;
  padding-left: 38px;
}

.title-box-main img {
  position: absolute;
  left: 6px;
  top: -20px;
  max-width: 52px;
  height: auto;
}

.play-box {
  position: relative;
  overflow: hidden;
  transition: 5s;
  border-radius: 10px;
}

.play-box img {
  width: 100%;
}

.play-box:hover .content-box {
  opacity: 1;
}

.play-box:hover:hover img {
  transform: scale(1.1);
  border-radius: 10px;
}

.play-box .content-box {
  position: absolute;
  left: 35%;
  top: 35%;
  z-index: 101;
  opacity: 0;
}

.play-box .content-box a.b-btn {
  color: var(--white-color);
  border: 1px solid var(--white-color);
  display: inline-block;
  padding: 5px 16px;
  border-radius: 8px;
}

/**/
.winner-faq-box {
  background-color: #181f25;
  border-radius: 12px;
}

.winner-box {
  text-align: center;
  padding: 30px;
}

.winner-box table {
  background-color: #14191d;
}

.winner-box table tbody tr td {
  font-size: 16px;
  color: #7a90a3 !important;
  background: #14191d;
  padding: 14px 20px !important;
}

/**/

.faq-box {
  text-align: center;
  padding: 30px;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
  background-image: none;
}

.accordion-button::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--black-color);
  background-color: var(--yellow-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
}

.accordion-button::after {
  background-image: none;
}

.accordion-item {
  margin-bottom: 8px;
  border-radius: 12px;
  background-color: #14191d;
  border: none;
}

.accordion-button {
  font-size: 16px;
  color: #7a90a3 !important;
  background-color: #14191d;
  border: 0;
  border-radius: 10px;
  padding: 16px 50px 16px 16px;
}

.accordion-button:not(.collapsed) {
  color: #7a90a3 !important;
  background-color: #14191d;
  box-shadow: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-body {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.accordion-body P {
  color: #7a90a3 !important;
  text-align: left;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.accordian-box-gradient-bg {
  padding: 1px;
  background: linear-gradient(
    300deg,
    rgb(255, 216, 0) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 19, 31, 0) 70%,
    rgb(255, 216, 0) 100%
  );
}

.accordion-item:first-of-type {
  background: no-repeat;
}

.accordion-body {
  padding: 1rem 1.25rem;
  background: #14191d;
  border-radius: 10px;
}

/**/

.live-casino-box .row,
.slot-games-box .row {
  row-gap: 30px;
  margin: 0;
}

.live-casino-box .col-md-2,
.slot-games-box .col-md-2 {
  padding: 3px !important;
}

/* footer */
footer .footer-logo-box {
  text-align: center;
  background: #0e1317;
}

footer .footer-logo-box img {
  width: 100%;
  max-width: 210px;
}

footer .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  column-gap: 12px;
  row-gap: 10px;
  background: #0e1317;
  padding: 15px;
}

footer .link-box i {
  font-size: 36px;
}

footer .box2 {
  background: #0e1317;
  padding: 20px 0;
}

footer .support-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

footer .support-box h3 {
  margin-bottom: 8px;
}

footer .support-box .icons-box i {
  font-size: 70px;
}

footer .support-box p {
  font-size: 24px;
  color: var(--white-color);
}

footer .footer-logo-box,
footer .box2,
footer .first-box .link-box,
footer .blank {
  height: 100%;
}
footer .footer-logo-box,
footer .secure-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .plus {
  background: #0e1317;
  text-align: center;
  justify-content: center;
  display: flex;
  font-size: 24px;
  align-items: center;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 15px;
  color: #bfbfc1;
}

footer .blank {
  color: #0e1317;
  background: #0e1317;
  text-align: center;
  justify-content: center;
  display: flex;
  font-size: 24px;
  align-items: center;
  font-weight: 700;
  padding: 23px;
}

footer .f-last .col {
  column-gap: 12px;
  row-gap: 10px;
}

footer .first-box .link-box {
  margin-bottom: 10px;
}

footer .first-box {
  margin-bottom: 20px;
}

footer .second-box {
  background: #0e1317;
}

footer .protect-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0e1317;
  padding: 30px;
}

footer .protect-box p {
  font-size: 24px;
  font-weight: 700;
  color: #bfbfc1;
}

footer .secure-box {
  text-align: center;
  background: #0e1317;
}

footer .third-box {
  margin: 10px 0;
}

footer .third-box .link-box ul {
  padding: 23px;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

footer .fourth-box {
  background: #0e1317;
  padding: 20px;
}

footer .fourth-box .text-box p {
  font-size: 16px;
  background: #0e1317;
  color: #bfbfc1;
}

footer .fourth-box .text-box {
  max-width: 1550px;
  margin: 0 auto;
  text-align: center;
}

footer .copyright-box {
  padding: 20px 10px;
}

footer .copyright-box p {
  font-size: 16px;
  color: var(--white-color);
}

footer .copyright-box p span {
  margin: 0 10px;
}

table {
  width: 100%;
  border-spacing: 0; 
  border-collapse: separate;
}

table tr:first-child th:first-child {
    border-top-left-radius:14px;
}

table tr:first-child th:last-child {
  border-top-right-radius:14px;
}

table tr:first-child td:first-child {
    border-bottom-left-radius:14px;
}

table tr:first-child td:last-child {
  border-bottom-right-radius:14px;
}

.winner-box .blue-gradient-bg {
  padding: 2px;
  background: rgb(0, 153, 255);
  background: linear-gradient(
    315deg,
    rgb(0, 153, 255) 0%,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 19, 31, 0) 80%,
    rgb(0, 153, 255) 100%
  );
  border-radius: 14px;
}

.winner-box table {
  border-collapse:collapse;
  -moz-border-radius:10px;
    -webkit-border-radius:14px;
    border-radius:14px
}

.winner-box table tr:first-child td:first-child {
  border-top-left-radius: 14px;
}

.winner-box table tr:first-child td:last-child {
  border-top-right-radius: 14px;
}

.winner-box table tr:last-child td:first-child {
  border-bottom-left-radius: 14px;
}

.winner-box table tr:last-child td:last-child {
  border-bottom-right-radius: 14px;
}


/* Login And Register css */

h1 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

h2 {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.com-form .col-md-6:first-child {
  padding: 0;
}

#register {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.com-form .register-part {
  background-color: var(--dark-gray);
  width: 100%;
  max-width: 1000px;
  border-radius: 20px;
  position: relative;
}

.com-form .left-box img {
  border-radius: 15px 0px 0px 15px;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.com-form .right-box {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.com-form .heading-box {
  margin: 20px 0;
  text-align: center;
}

.com-form .icon-box {
  position: absolute;
  right: 25px;
  top: 15px;
}

.com-form .icon-box a {
  font-size: 20px;
}

.com-form .right-box h2 {
  color: var(--yellow);

}

.com-form .gift-box {
  display: flex;
  align-items: center;
  background-color: #212d43;
  margin-bottom: 20px;
  border-radius: 10px;
}

.com-form .gift-img-box {
  background-color: #263954;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.com-form .gift-box img {
  width: 100%;
  max-width: 53px;
}

.com-form .gift-text-box {
  width: 100%;
  max-width: 100%;
  text-align: center;
  padding: 20px 0;
}

.com-form .form-class {
  margin-bottom: 20px;
}

.com-form .form-control {
background-color: #1c2d44 !important;
color: var(--gray) !important;
padding: 15px 40px;
border: none !important;
box-shadow: none !important;
border-radius: 10px;
font-weight: 500;
}

.com-form .form-control::placeholder {
  color: var(--gray);
  opacity: 1;
}

.com-form .pass a {
position: absolute;
right: 0;
top: 50%;
cursor: pointer;
color: #000;
padding-right: 15px;
text-decoration: none;
transform: translateY(-50%);
}

.com-form .pass {
  position: relative;
}

.com-form .hide-eyes {
  display: none;
}

.com-form .show-pass.show .show-eyes {
  display: none;
}

.com-form .show-pass.show .hide-eyes {
  display: block;
}

.com-form .last-link p {
  color: var(--white);
  font-size: 18px;
  text-align: center;
}

.com-form .last-link p a {
  color: var(--yellow) !important;
  font-size: 18px;
}

.com-form .btn-box {
  margin: 50px 0 30px 0;
}

.com-form .sub-btn {
  background: linear-gradient(90deg, rgba(245, 233, 48, 1) 0%, rgba(249, 183, 34, 1) 100%);
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  padding: 10px 40px;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: none !important;
  line-height: 1;
}

/* Login page css  start */
#login {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#login .login-part {
  background-color: var(--dark-gray);
  width: 100%;
  max-width: 1000px;
  border-radius: 20px;
  position: relative;
}

#login .last-link p,
#login .register-link p{
  color: #4f6076;
}

#login .last-link p a,
#login .register-link a {
  color: var(--white) !important;
  text-decoration: underline;
}

#login .register-link p{
  margin: 0;
  text-align: center;
}
#login .register-link a{
  text-align: center;
  width: 100%;
  max-width: 100%;
}
#login .register-link {
margin-top: 50px;
}
#login .btn-box{
  margin-top: 20px;
}
