/* urbanist-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Urbanist[wght].ttf') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.container {
  display: flex;
  gap: 220px;
  padding: 48px;
  padding-left: 12px;
  padding-bottom: 0px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: white;
}

.header .logo-container {
  display: flex;
  align-items: center;
}

.header .logo {
  height: 70px;
  margin-right: 10px;
}

.header .logo-text h1 {
  margin: 0;
  font-size: 18px;
  color: #2b6a63;
}

.header .logo-text p {
  margin: 0;
  font-size: 12px;
  color: #6c757d;
}

.header .primary-button {
  padding: 16px 48px;
  gap: 10px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 17.89px;
  font-weight: 600;
  line-height: 19.68px;
  background: #111827;
  cursor: pointer;
}

.header .secondary-button {
  padding: 12px 48px;
  gap: 10px;
  border-radius: 49.7px;
  font-size: 17.89px;
  font-weight: 500;
  line-height: 19.68px;
  color: rgba(17, 24, 39, 1);
  background: rgba(255, 255, 255, 1);
  cursor: pointer;
  border: 1px solid rgba(17, 24, 39, 1);
  text-decoration: none;
  font-family: 'Urbanist';
}

.footer {
  background-color: #ffffff;
  padding: 20px 40px;
  font-family: Urbanist !important;
}

.footer .footer-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer .footer-left {
  width: 260px;
}

.footer .logo {
  height: 50px;
  @media screen and (min-width: 768px) {
    height: 70px;
  }
}

.footer .tagline {
  font-size: 18px;
  font-weight: 500;
  line-height: 26.1px;
  color: rgba(111, 117, 130, 1);
  margin-top: 20px;
  text-align: left;
  @media screen and (min-width: 768px) {
  margin-right: 16rem;
  }
}

.footer .copyright {
  text-align: left;
    margin-top: 2rem;

  @media screen and (min-width:769px) and (max-width: 1024px) {
    margin-left: .5rem; 
  }
  
  @media screen and (min-width:1025px) and (max-width: 1900px) {
    margin-left: 4rem;
  }
  
  @media screen and (min-width:1901px) {
    margin-left: 16em;
  }
}
.footer .copyright-text {
  font-size: 18px;
  color: rgba(2, 53, 41, 1);
  margin-top: 20px;
}

.footer .copyright-tag {
  font-size: 18px;
  color: rgba(111, 117, 130, 1);
  margin-top: 20px;
  text-align: left;
}

.footer .footer-right {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.footer .footer-column {
  flex: 1;
  max-width: 216px;
  word-wrap: break-word;
}

.footer .footer-column h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 21.6px;
  text-align: left;
  color: rgba(19, 33, 60, 1);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer .footer-column ul {
  list-style-type: none;
  padding: 0;
  margin-left: 0;
}

.footer .footer-column ul li {
  margin-bottom: 10px;
}

.footer .footer-column ul li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 26.1px;
  text-align: left;
  text-decoration: none;
  color: rgba(111, 117, 130, 1);
}

.footer .horizontal-line {
  border-top: 1px solid #e0e0e0;
  @media screen and (min-width:769px) and (max-width: 1024px) {
    margin-left: .25rem;
    margin-right: .25rem;
  }
  
  @media screen and (min-width:1025px) and (max-width: 1900px) {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  
  @media screen and (min-width:1901px) {
    margin-left: 15rem;
    margin-right: 15rem;
  }
}

.form-container {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  /* font-family: Inter; */
}

.form-container h1 {
  margin-top: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.73px;
  color: #111827;
  text-align: center;
}

.form-container h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 38.73px;
  color: #111827;
  text-align: center;
}

.form-container p {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: center;
  margin-bottom: 24px;
  color: #6c757d;
}

.form-container .input-group {
  margin-bottom: 20px;
}

.form-container .input-group.disabled input {
  border: 1px solid #31795a33;
  background: #e5e7eb;
}

.form-container label {
  color: #6c757d;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: center;
}

.form-container input {
  width: 100%;
  padding: 17px 24px;
  color: #495057;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  border-radius: 8px;
  border: 1px solid #d0ddd8;
  background: rgba(49, 121, 90, 0.1);
}

.form-container input::placeholder {
  color: #b0b0b0;
}

.form-container input:focus {
  outline: none;
  border-color: #9cb8b0;
}

.form-container select {
  width: 100%;
  padding: 17px 24px;
  color: #b0b0b0;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  border-radius: 8px;
  border: 1px solid #d0ddd8;
  background-color: rgba(49, 121, 90, 0.1);
}

.form-container .phone-input-container {
  margin-bottom: 20px;
}

.form-container .phone-input {
  display: flex;
  align-items: center;
  background-color: #f3f7f4;
  border: 1px solid #d9dfdc;
  border-radius: 6px;
  overflow: hidden;
}

.form-container .phone-input select {
  background-color: transparent;
  border: none;
  padding: 10px;
  padding-right: 5px;
  font-size: 14px;
  color: #1a1a1a;
  appearance: none;
  cursor: pointer;
}

.form-container .phone-input input {
  border: none;
  background-color: transparent;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  color: #1a1a1a;
}

.form-container .phone-input input::placeholder {
  color: #b0b0b0;
}

.form-container .phone-input select:focus,
.phone-input input:focus {
  outline: none;
}

.form-container .phone-input select {
  width: 100px; /* Adjust based on the country code length */
  border-right: 1px solid #d9dfdc;
}

.form-container .phone-input input {
  padding-left: 10px;
}

.form-container .custom-input {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #d0ddd8;
  background: rgba(49, 121, 90, 0.1);

  border-radius: 8px;
  width: Fill (425px) px;
}

.form-container .custom-input input {
  border: none;
  background-color: transparent;
  width: 100%;
}

.form-container .custom-input .icon {
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: #2b6a63;
}

.form-container .custom-input .icon svg {
  width: 18px;
  height: 18px;
}

.form-container .instructions {
  margin-top: 10px;
  color: #6c757d;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
}

.form-container .terms-conditions {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
}

.form-container .terms-conditions input {
  margin-right: 10px;
  width: unset;
}

.form-container .terms-conditions label {
  font-size: 14px;
  color: #244034;
}

.form-container .terms-conditions a {
  color: #0056b3;
  text-decoration: none;
}

.form-container .terms-conditions a:hover {
  text-decoration: underline;
}

.form-container button, .form-container input.primary-button {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  text-align: center;
  width: 100%;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  margin-top: 20px;
  padding: 16px 24px;
}

.form-container input.primary-button {
  background: linear-gradient(90.54deg, #145455 0.46%, #1e6f6e 100%);
  border: 1px solid rgba(49, 121, 90, 0.09);
  margin: 0;
  margin-top: 1em;
}

.form-container input.primary-button:hover {
  background-color: #255a53;
}

.form-container input.secondary-button {
  color: #145455;
  border: 1px solid #e5e7eb;
  background-color: white;
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
}

.form-container input.premium-button {
  color: #145455;
  border: 1px solid #e5e7eb;
  background-color: white;
  border: 1px solid #023529;
}
.progress-container {
  width: 300px;
  height: fit-content;
  padding: 20px;
  background-color: #eef4f0;
  border-radius: 20px;
}

.progress-container .step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.progress-container .step .circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  margin-right: 20px;
  color: rgba(107, 114, 128, 1);
  border: 1px solid rgba(156, 163, 175, 1);
}

.progress-container .step.active .circle {
  background: rgba(20, 84, 85, 1);
  border: none;
  color: white;
}

.progress-container .step.complete .circle {
  background: #C9F153;
  border: none;
  color: #145455;
}

.progress-container .step:not(.active) .step:not(.complete) .circle {
  background-color: white;
  color: rgba(107, 114, 128, 1);
}

.progress-container .line {
  width: 2px;
  height: 40px;
  background-color: #e0e0e0;
  margin-left: 22px;
  margin-bottom: 20px;
}

.progress-container .step .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  text-align: left;
  margin: 0;
}

.progress-container .step.active .content h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  text-align: left;
  margin: 0;
}

.progress-container .content p {
  margin: 5px 0 0;
  color: #6c757d;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.52px;
  text-align: left;
}

.phone_no label {
  width: 100%;
  text-align: left;
}

.form-item-phone-no-country-code {
  width: 25%;
  padding: 10px 15px !important;
  color: #495057;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  border-radius: 8px;
  border: 1px solid #d0ddd8;
  background: rgba(49, 121, 90, 0.1);
  height: 3.4em !important;
  top: 5px;
}


.form-item-phone-no-country-code .country-select {
border-bottom: 0;
}
.form-item-phone-no-phone .local-number {
width: 75%;
color: #495057;
box-sizing: border-box;
font-size: 16px;
font-weight: 400;
line-height: 19.36px;
border-radius: 8px;
border: 1px solid #d0ddd8;
background: rgba(49, 121, 90, 0.1);
height: 3.4em !important;
}
.form-item-phone-no-phone {
width: 74%;
}
.form-item-phone-no-phone input#edit-phone-no-phone {
width: 100%;
}
em.placeholder {
background-color: unset;
}

.container-otp-page {
padding: 74px;
}
.container-otp-page{
padding: 74px;
display: unset;
gap: unset;
/* padding: unset; */
display: block;
}

.container-otp-page .form-container h2 {
font-size: 32px;
font-weight: 700;
line-height: 38.73px;
color: #111827;
text-align: center;
}

.final-container {
width: 100%;
max-width: 350px;
text-align: center;
}

.final-container h1 {
font-size: 32px;
font-weight: 700;
line-height: 38.73px;
color: #111827;
}

.final-container p {
font-size: 14px;
font-weight: 400;
line-height: 16.94px;
color: #4b5563;
}

.final-container .final-container-content{
  margin-bottom: 48px;
}

.final-container button {
font-size: 16px;
font-weight: 600;
line-height: 19.36px;
text-align: center;
width: 100%;
border: none;
border-radius: 8px;
cursor: pointer;
color: white;
padding: 16px 24px;
}

.final-container button.primary-button {
background: linear-gradient(90.54deg, #145455 0.46%, #1e6f6e 100%);
border: 1px solid rgba(49, 121, 90, 0.09);
}

.final-container button.primary-button:hover {
background-color: #255a53;
}

.final-container a.button-link {
display: block;
font-size: 16px;
font-weight: 600;
line-height: 19.36px;
text-align: center;
width: 100%;
border: none;
border-radius: 8px;
cursor: pointer;
color: white;
padding: 16px 24px;
text-decoration: none;
font-family: inherit;
}

.final-container a.button-link {
background: linear-gradient(90.54deg, #145455 0.46%, #1e6f6e 100%);
border: 1px solid rgba(49, 121, 90, 0.09);
}

.final-container a.button-link:hover {
background-color: #255a53;
}

input.smb_btn {
margin-top: 30px!important;
}

.form-container .note {
  margin-top: 1em;
}

header .logo-container {
  display: flex;
  align-items: center;
}

header .logo {
  height: 70px;
  margin-left: 5em;
  @media screen and (min-width:1901px) {
    margin-left: 17em;
    
  }
}