@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
:root {
  --light-color: #ffffff;
  --light-95-color: #F2F2F2;
  --surface-color: #fdfdfc;
  --dark-color: #000000;
  --dark-10-color: #191919;
  --gradient-color: linear-gradient(173deg, #e0ae43 0%, #c65d99 100%);
  --font-family: "Inter", sans-serif;
  --navbar-height: 74px;
}

* {
  box-sizing: border-box;
  transition: all ease-in-out 250ms;
  font-optical-sizing: auto;
  font-family: var(--font-family);
}
html {
  height: 100%;
}

body {
  background: var(--surface-color);
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  color: var(--dark-10-color);
  height: 100%;
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1 {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 12px 0 24px 0;
}

h2 {
  font-size: 27px;
  line-height: 28px;
  margin: 0;
}

h5 {
  margin-bottom: 0;
}

p {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 0;
}

img {
  width: 100%;
}

:focus-visible {
  outline: none;
}

button {
  border: none;
  background: none;
  padding-inline: 0;
}

a {
  text-decoration: none;
  color: #FFA393;
}
a:hover {
  color: #c86490;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 25px rgba(245, 245, 245, 0);
  background-color: rgba(245, 245, 245, 0);
}

::-webkit-scrollbar {
  width: 8px;
  height: 5px;
  background-color: rgba(245, 245, 245, 0);
}

::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px var(--primary-color);
  background-color: var(--primary-color);
  border-radius: 16px;
  margin: 16px 0;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -webkit-appearance: texfield;
          appearance: texfield;
  -moz-appearance: textfield;
}

.primary-btn {
  width: auto;
  display: flex;
  background: var(--gradient-color);
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 100px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.primary-btn:hover {
  color: white;
  transform: scale(1.02);
}

.navbar {
  background: var(--gradient-color), #efc77d;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  height: var(--navbar-height);
  border-radius: 16px 16px 0 0;
  position: sticky;
  top: 0;
  z-index: 99;
}
.navbar .container-fluid {
  margin-bottom: 8px;
}
.navbar .title {
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  text-align: center;
  color: var(--light-color);
  margin: 6px auto;
}
.navbar::after {
  content: "";
  position: relative;
  bottom: -1px;
  width: 100%;
  height: auto;
  flex: 1 1 auto;
  border-radius: 16px 16px 0 0;
  background-color: var(--surface-color);
}

.input-c-group {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.input-c-group label {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #303030;
  margin-left: 16px;
}
.input-c-group input {
  border: 1px solid #c2c2c2;
  border-radius: 100px;
  width: 100%;
  height: 56px;
  background: transparent;
  overflow: auto;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #303030;
  padding: 0 16px;
}

.main-page {
  background: url("../images/page-bg.png"), var(--surface-color);
  height: calc(100vh - var(--navbar-height));
  background-size: auto 100%;
}

.page-heading {
  text-align: left;
  margin: 24px 0;
}
.page-heading h3 {
  font-weight: 700;
  font-size: 20px;
  color: #343a40;
}
.page-heading p {
  font-weight: 400;
  font-size: 14px;
  color: #343a40;
}
.page-heading:after {
  content: "";
  width: 32px;
  height: 2px;
  background: #efc77d;
  display: block;
  margin-top: 8px;
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: auto;
  right: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-toggle::after {
  color: white;
}

.onboard-page {
  text-align: center;
}

.ob-block {
  max-width: 520px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.login-logo {
  margin: 16px;
  width: 200px;
}
.login-logo svg {
  width: 100%;
}

.login-text h3 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.login-text p {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #969696;
}

.login-tabs {
  width: 100%;
  margin: 16px 0;
}
.login-tabs .nav-tabs {
  background: #fff8eb;
  justify-content: center;
  width: 100%;
  margin: auto;
  padding: 6px;
  border-radius: 150px;
  border: none;
}
.login-tabs .nav-tabs .nav-item {
  width: 50%;
}
.login-tabs .nav-tabs .nav-link {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #969696;
  padding: 12px 32px;
  width: 100%;
  height: 100%;
  border: none;
}
.login-tabs .nav-tabs .nav-link:hover, .login-tabs .nav-tabs .nav-link:active, .login-tabs .nav-tabs .nav-link:focus-visible {
  border: none;
  box-shadow: none;
}
.login-tabs .nav-tabs .nav-item.show .nav-link,
.login-tabs .nav-tabs .nav-link.active {
  box-shadow: 0 4px 42px 0 rgba(0, 0, 0, 0.23);
  background: white;
  border: none;
  border-radius: 100px;
  color: #454545;
}

form.login-form {
  margin: 24px 0;
}
form.login-form .iti {
  width: 100%;
}
form.login-form .iti .iti__selected-country-primary {
  border-right: 1px solid #c2c2c2;
  padding: 16px;
}
form.login-form .iti.iti--allow-dropdown input.iti__tel-input, form.login-form .iti.iti--allow-dropdown input.iti__tel-input[type=tel], form.login-form .iti.iti--allow-dropdown input.iti__tel-input[type=text] {
  padding-left: 80px;
}
form.login-form .input-c-group {
  margin: 24px auto;
}

.OTP-form .ac-grp {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.OTP-form .ac-grp .nt {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #303030;
}
.OTP-form .ac-grp button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.OTP-form .ac-grp button.ed {
  background-color: #E30421;
}
.OTP-form .ac-grp .tm {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #e30421;
}
.OTP-form .input-c-group.otp-field {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  max-width: 100%;
}
.OTP-form .input-c-group.otp-field input {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.13);
  background: #f5f5f5;
  border-radius: 100px;
  text-align: center;
  width: 70px;
  height: 70px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: #303030;
}
@media (max-width: 576px) {
  .OTP-form .input-c-group.otp-field input {
    width: 50px;
    height: 50px;
  }
}

.ac-b {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 22px 0 rgba(0, 0, 0, 0.27);
}
.ac-b .img-box {
  padding: 24px;
  text-align: center;
}
@media (max-width: 576px) {
  .ac-b .img-box svg {
    width: 95%;
  }
}
.ac-b:hover {
  box-shadow: 0 54px 102px 0 rgba(0, 0, 0, 0.3);
}

.ac-t {
  display: flex;
  align-items: center;
  background: var(--gradient-color);
  height: 46px;
  color: white;
  justify-content: space-between;
  padding: 16px;
}
.ac-t h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 148%;
  text-transform: capitalize;
}

.take-photo-page .t {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #343a40;
  margin: 24px auto;
}
.take-photo-page .cp {
  margin: auto;
  display: flex;
  border-radius: 100%;
  width: 72px;
}
.take-photo-page .cp:hover {
  box-shadow: 0 54px 102px 0 rgba(0, 0, 0, 0.3);
}

.capture-img {
  margin: auto;
  width: 250px;
  height: 250px;
  background: var(--gradient-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.capture-img .img-box {
  width: 95%;
  height: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 100%;
}
@media (max-width: 325px) {
  .capture-img {
    width: 260px;
    height: 260px;
  }
}

.photos-page .img-wrapper {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.photos-page .img-wrapper .form-check-input {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
}
.photos-page .img-wrapper .form-check-input[type=checkbox]:checked {
  background-color: #ca698c;
  border: 1px solid white;
}
.photos-page .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.photos-page .img-wrapper:has([type=checkbox]:checked) {
  background-image: var(--gradient-color);
  background-origin: border-box;
  border: 4px solid transparent;
}

.page-action {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  padding: 16px;
}
.page-action .primary-btn {
  width: 100%;
}/*# sourceMappingURL=styles.css.map */