/* =============== Common CSS ====================== */
:root {
  --blue: #1e90ff;
  --white: #ffffff;
  --skyblue: #f7f9fd;
  --red: #f0142f;
  --pragcolor: #686b78;
  --headingcolor: #21175b;
  --btnbgcolor: #3366d8;
  --fontreqular: Poppins-Regular;
}

/* Fonts */
@font-face {
  font-family: Poppins-Regular;
  src: url(Fonts/Poppins-Regular.otf);
}
@font-face {
  font-family: Poppins-Medium;
  src: url(Fonts/Poppins-Medium.otf);
}
@font-face {
  font-family: Poppins-Bold;
  src: url(Fonts/Poppins-Bold.otf);
}
@font-face {
  font-family: Poppins-Light;
  src: url(Fonts/Poppins-Light.otf);
}

/* Base Styles */
html, body {
  height: 100vh;
  margin: 0;
  width: 100%;
  font-family: Poppins-Regular;
}

a {
  color: var(--headingcolor);
  text-decoration: none;
}
a:hover {
  color: var(--headingcolor);
  text-decoration: none;
}

*, h1, h2, h3, h4, h5, h6, p {
  font-family: "Poppins", sans-serif;
}

/* Typography */
p {
  font-size: 20px;
  line-height: 30px;
  color: var(--pragcolor);
  padding-top: 16px;
  margin-bottom: 3rem;
}
.title1, .title2 {
  font-size: 24px;
  color: var(--headingcolor);
  font-weight: 600;
}
.title1 {
  line-height: 0;
}
.title2 {
  line-height: 30px;
}
.sign_parg {
  font-size: 16px;
  color: #7e7e7e;
  line-height: 12px;
  margin-bottom: 36px;
}
.content {
  font-size: 16px;
  color: var(--headingcolor);
  margin-bottom: 6px;
  font-weight: 500;
}
.welcome_line {
  color: #f8ae16;
}
.footer_text {
  font-size: 16px;
}

/* Forms & Inputs */
.inputbox {
  font-size: 14px;
  color: #7e7e7e;
  height: 44px;
  padding: 6px 12px;
  border: 1px solid #d8dbea;
  border-radius: 6px;
}
.error,
form .error {
  color: red;
}
input.error,
textarea.error,
select.error {
  border: 1px solid red !important;
}

/* Buttons */
.submitbtn,
.send_otp_btn {
  background: linear-gradient(to right, #21175b, #4d268c);
  border-radius: 6px;
  border: none;
  color: #fff;
  font-size: 16px;
}
.submitbtn {
  line-height: 32px;
  padding: 8px;
  font-size: 20px;
}
.send_otp_btn {
  line-height: 30px;
}
.submitbtn:hover,
.send_otp_btn:hover {
  color: #f8ae16;
}
.login {
  background: #310d5a !important;
  border-radius: 25px;
  padding: 8px 32px;
}
.login a {
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
}
.all_btn {
  margin-top: 46px;
}

/* Info Links */
.terms,
.privacy {
  color: var(--headingcolor);
  font-weight: 600;
}
.alreadyaccount {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 10px;
}
.forget_pin p {
  color: var(--red);
  font-size: 12px;
  margin-bottom: 24px;
  padding-top: 0;
}
.forget_pin p a {
  color: red;
}
.new_account {
  border: 1px solid var(--headingcolor);
  margin-top: 16px;
  color: var(--headingcolor);
  font-size: 16px;
  font-weight: 500;
}

/* Header */
#header {
  transition: 0.5s;
  z-index: 997;
  padding: 12px 0;
  background: #fff;
  box-shadow: 0 3px 6px #00000029;
}
#header.header-scrolled,
#header.header-inner-pages {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo img {
  max-height: 52px;
}

/* Welcome */
.welcome-heading {
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
}
.welcome-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 49%;
  background: linear-gradient(to right, #ffffff, #f8ae16);
  border-radius: 2px;
}
.welcome_logo {
  margin: 40px 0;
  width: 250px;
  height: 55px;
}

/* Navbar */
.navbar {
  padding: 0;
}
.navbar ul {
  display: flex;
  list-style: none;
  align-items: center;
  margin-left: 85px;
}
.navbar li {
  position: relative;
}
.navbar a {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  color: #403f51;
  font-size: 16px;
  transition: 0.3s;
}
.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #274fbe;
}
.navbar .dropdown ul {
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: 0.3s;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  left: 100%;
  opacity: 1;
}

/* Mobile Nav */
.mobile-nav-toggle {
  font-size: 28px;
  display: none;
}

.navbar-mobile {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(48, 47, 84, 0.9);
}
.navbar-mobile ul {
  position: absolute;
  top: 55px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background: #fff;
  padding: 10px 0;
  border-radius: 10px;
  overflow-y: auto;
}
.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #434175;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  background: #fff;
  margin: 10px 20px;
  padding: 10px 0;
}

/* Layout */
.full-height {
  height: 100vh;
}
.login_leftside {
  min-height: 100vh;
  background-image: url("../image/loginbg.svg");
}

/* Responsive */
@media (min-width: 1200px) {
  .mx-xl-5 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
@media (max-width: 575px) {
  .login_leftside {
    background: #fff;
    min-height: 48vh;
  }
  .loging_img {
    margin-top: 84px;
  }
  .title1 {
    font-size: 16px;
    line-height: 21px;
  }
  .login_rightside {
    margin-top: -45px !important;
  }
  p {
    font-size: 14px;
    line-height: 21px;
    padding-top: 8px;
    margin-bottom: 20px !important;
  }
  .content {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .inputbox {
    height: 44px;
  }
  .submitbtn {
    padding: 12px 0;
  }
  .alreadyaccount {
    font-size: 14px;
    line-height: 21px;
    padding-top: 10px;
  }
  #header .logo img {
    width: 105px;
    height: 24px;
  }
  .all_btn {
    margin-top: 30px;
  }
  .verify_side {
    margin-top: 26% !important;
  }
}
