body, html {
  overflow: hidden;
}

.page {
  height: 100vh;
  margin: 0 auto;
  max-width: 100%;
  font-family: "Inter", sans-serif;
}

a:link {
  text-decoration: underline;
}

.head {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.main {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
}

#logo {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#img1 {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.small-aruba {
  height: 65% !important;
}

#img2 {
  width: 30%;
}

#margin_zero {
  margin: 0;
}

/* Media Query for iPads */
/* Media Query for Desktops */
.otp-inputs {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.otp-inputs input {
  width: 63px;
  height: 63px;
  flex-grow: 1;
  text-align: center;
}

.ctm-columns {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.ctm-columns > .column:last-of-type {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  display: flex;
  flex-direction: column;
}
.page .main {
  padding: 15px;
  overflow: auto;
  flex-grow: 1;
}
.page .main .col {
  width: 30%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 1400px) {
  .page .main .col {
    width: 30%;
  }
}
@media (max-width: 821px) {
  .page .main .col {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .page .main .col {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .page .main .col {
    width: 100%;
  }
}
.page .main .main-img {
  width: 200px;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
}
.page .main .main-title {
  font-weight: 600;
  font-size: 24px;
  color: #065B80;
  text-align: center;
}
.page .main .wrong-otp {
  background: #F8D7D7;
  border-radius: 4px;
  color: #AB2D2D;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 10px;
  margin-bottom: 20px;
}

.ctm-form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.ctm-form .field:last-of-type {
  margin-bottom: 0;
}
.ctm-form .field .control .subtitle {
  font-weight: 400;
  font-size: 14px;
  color: #5A5858;
  margin-bottom: 10px;
}
.ctm-form .field .control .otp-number {
  text-align: center;
  margin-bottom: 20px;
}
.ctm-form .field .control .otp-number span {
  color: #0F0F0F;
  font-size: 18px;
  font-weight: 600;
}
.ctm-form .field .control .resend {
  margin-bottom: 0;
  margin-top: 10px;
}
.ctm-form .field .control .resend a {
  color: #DA8B78;
  font-weight: 600;
  text-decoration: none;
}
.ctm-form .field .control .input {
  height: 50px;
  border: 1px solid #AEAEAE;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  color: #949494;
}
.ctm-form .field .control .input:focus {
  border-color: #3273dc;
  box-shadow: none;
}
.ctm-form .buttons {
  margin: 0 !important;
  margin: 20px 0 !important;
}
.ctm-form .buttons .button {
  width: 205px;
  height: 50px;
  margin: 0 !important;
  border-radius: 8px;
  background: #065B80;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  letter-spacing: 1px;
}

.otp-inputs input {
  width: 62px !important;
  height: 62px !important;
  flex-grow: 1;
  text-align: center;
}

.detail-info {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
.detail-info > div {
  flex-wrap: nowrap;
  flex-grow: 1;
}
.detail-info .ctm-title {
  font-weight: 400;
  font-size: 16px;
  color: #949494;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1;
}
.detail-info .ctm-value {
  font-weight: 500;
  font-size: 18px;
  margin: 0;
  line-height: 1;
  color: #474747;
}

.text {
  font-weight: 500;
  font-size: 18px;
  color: #474747;
}

.heading {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #474747;
}

.ctm-modal {
  position: absolute;
  z-index: 99999999999999980000000000000000000000;
  top: 0;
  left: 0;
  visibility: hidden;
  display: none;
  width: 100%;
  height: 100%;
}

.ctm-modal.is-visible {
  visibility: visible;
  display: block;
}

.ctm-modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(88, 88, 88, 0.2);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
  pointer-events: none;
}

.ctm-modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modal-wrapper {
  position: absolute;
  z-index: 9999;
  top: 50%;
  left: 50%;
  width: 325px;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
}

.modal-transition {
  transition: all 0.3s 0.12s;
  opacity: 1;
}

.modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}

.modal-header,
.ctmmodal-content {
  padding: 1em;
}

.modal-header {
  position: relative;
  background-color: #fff;
  box-shadow: 0 1px 2px hsla(0deg, 0%, 0%, 0.06);
  border-bottom: 1px solid #e8e8e8;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  color: #aaa;
  background: none;
  border: 0;
}

.modal-close:hover {
  color: #777;
}

.modal-heading {
  font-size: 1.125em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ctmmodal-content > *:first-child {
  margin-top: 0;
}

.ctmmodal-content > *:last-child {
  margin-bottom: 0;
}

.ctmmodal-action {
  display: flex;
  gap: 15px;
}
.ctmmodal-action > button {
  flex-grow: 1;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  height: 32px;
  color: #FFFFFF;
  border-radius: 4px;
  cursor: pointer;
}

.btn-transparent {
  background: transparent;
  border-color: transparent;
  color: #474747 !important;
}

.btn-primary {
  background: #065B80;
  border: 1px solid #065B80;
}

.modal-img {
  width: 100px;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */