@charset "UTF-8";
body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #000000;
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
}

svg {
  display: block;
  border: none;
  outline: none;
  overflow: visible;
}
svg:focus, svg:focus-visible {
  outline: none;
}

input::-webkit-contacts-auto-fill-button, input::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  height: 0;
  width: 0;
  margin: 0;
}
input::-webkit-textfield-decoration-container {
  visibility: hidden;
}

.page-wrapper {
  max-width: 1440px;
  background-color: #FFFFFF;
  margin: 0 auto;
}

.icon-sm {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

.text-muted {
  color: #000000 !important;
}

.text-sm {
  font-size: 13px;
}

.hero-section {
  position: relative;
  background-color: #111827;
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  border-radius: 0 0 24px 24px;
  min-height: 636px;
  padding: 40px 80px 80px 80px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgb(16, 17, 22) 35%, rgba(16, 17, 22, 0.8) 55%, rgba(16, 17, 22, 0) 80%);
  z-index: 1;
}
@media (max-width: 991px) {
  .hero-section {
    border-radius: 0;
    min-height: 500px;
    padding: 32px 24px;
  }
  .hero-section::before {
    background: linear-gradient(135deg, rgba(24, 25, 28, 0.95) 0%, rgba(24, 25, 28, 0.85) 60%, rgba(24, 25, 28, 0) 100%);
  }
}

.hero-header {
  margin-bottom: auto;
  position: relative;
  z-index: 2;
}

.back-link {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.2px;
  transition: opacity 0.3s ease;
}
.back-link:hover {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 40px;
  }
}

.hero-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 160px;
  color: #FFFFFF;
  font-weight: 300;
}

.hero-actions .btn {
  border-radius: 40px;
  padding: 14px 44px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .hero-actions .btn {
    padding: 12px 32px;
  }
}

.footer-section {
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 991px) {
  .footer-container {
    padding: 0 24px;
  }
}

.footer-logo {
  height: 40px;
  display: block;
  margin-right: 24px;
}

.footer-logo-wrapper {
  display: flex;
  justify-content: center;
}

.footer-gradient-line {
  width: calc(100% - 24px);
  height: 4px;
  border: none;
  opacity: 1;
  margin: 20px 0 0 0;
  border-radius: 10px;
  background: linear-gradient(to right, #F8B400 0%, #F15A24 23%, #ED1E79 38%, #02AED0 69%, #07E43A 100%);
}

.footer-links-row {
  margin-top: 40px;
  margin-bottom: 20px;
}

.footer-heading {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  color: #000000;
}

.footer-list {
  margin: 0;
  padding: 0;
}
.footer-list li {
  margin-bottom: 3px;
}
.footer-list a {
  color: #000000;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.3s ease;
}
.footer-list a:hover {
  font-weight: 600;
  text-decoration: underline;
}

.list-no-heading {
  margin-top: 43px;
}
@media (max-width: 991px) {
  .list-no-heading {
    margin-top: 0;
  }
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 24px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .footer-bottom {
    padding: 20px;
  }
}

.copyright-text {
  font-size: 14px;
  font-weight: 300;
  color: #000000;
}

.contact-info {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.contact-info a {
  text-decoration: none;
  font-weight: 700;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-icons a img {
  height: 20px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.social-icons a:hover img {
  opacity: 1;
}

.auth-page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}
@media (max-width: 991px) {
  .auth-page-wrapper {
    padding: 0 20px;
    margin: 0;
    height: auto;
    min-height: 100dvh;
  }
}

.auth-container {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  background: #FFFFFF;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .auth-container {
    flex-direction: column;
  }
}

.auth-image-col {
  flex: 0 0 auto;
  width: min(43.75%, 630px, (100dvh - 80px) * 630 / 945);
  min-width: 450px;
  aspect-ratio: 630/945;
  position: sticky;
  top: 40px;
  align-self: flex-start;
  padding: 0;
  border-radius: 24px;
  margin: 40px 0 0;
  overflow: hidden;
}
.auth-image-col .slider-bg-layer {
  border-radius: inherit;
}
@media (max-width: 991px) {
  .auth-image-col {
    display: none;
  }
}

.auth-content-col {
  flex: 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 40px;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .auth-content-col {
    padding: 0;
    flex: 1;
    max-width: 100%;
    height: auto;
    overflow-y: visible;
  }
}

.auth-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100% !important;
  position: sticky;
  margin: 0 auto;
  top: 0;
  padding-top: 40px;
  height: 96px;
  z-index: 9;
  background-color: #FFFFFF;
}
@media (max-width: 991px) {
  .auth-header {
    margin-bottom: 20px;
    padding-top: 20px;
    margin-top: -20px;
  }
}

.auth-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .auth-title {
    font-size: 24px;
  }
}

.auth-text {
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 40px;
}

.auth-form-area {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-left: auto;
  margin-right: auto;
}
.auth-form-area.type-login {
  margin-top: 120px;
}
@media (max-width: 991px) {
  .auth-form-area.type-login {
    margin-top: 20px;
  }
}
.auth-form-area.type-register {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .auth-form-area.type-register {
    margin-top: 0;
  }
}

.auth-bottom-wrapper {
  margin-top: auto;
  padding-bottom: 80px !important;
  padding-top: 30px;
}
@media (max-width: 991px) {
  .auth-bottom-wrapper {
    padding-bottom: 30px !important;
  }
}

.auth-submit-wrapper {
  margin-top: 60px;
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .auth-submit-wrapper {
    padding-bottom: 0;
    margin-top: 30px;
  }
}

div[id^=step-] {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.resize-animation-stopper * {
  transition: none !important;
}

.dashboard-body {
  background-color: #F6F7FA;
  overflow: hidden;
  height: 100vh;
}

.dashboard-sidebar {
  width: 250px;
  background-color: #FFFFFF;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1040;
  border-right: 1px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease-in-out;
}

.sidebar-nav {
  overflow-y: auto;
  flex-grow: 1;
  padding: 30px;
}
.sidebar-nav::-webkit-scrollbar {
  width: 6px;
}
.sidebar-nav::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 4px;
}
.sidebar-nav .nav-item {
  margin-bottom: 8px !important;
}
.sidebar-nav .nav-link span:not(.nav-icon):not(.toggle-icon),
.sidebar-nav .submenu-link span:not(.nav-icon):not(.toggle-icon) {
  font-weight: 400;
}
.sidebar-nav .nav-link.selected span:not(.nav-icon):not(.toggle-icon), .sidebar-nav .nav-link.active span:not(.nav-icon):not(.toggle-icon),
.sidebar-nav .submenu-link.selected span:not(.nav-icon):not(.toggle-icon),
.sidebar-nav .submenu-link.active span:not(.nav-icon):not(.toggle-icon) {
  font-weight: 600;
}
.sidebar-nav .nav-link {
  color: #000000;
  transition: all 0.2s ease;
  height: 40px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.sidebar-nav .nav-link > div {
  width: 100%;
}
.sidebar-nav .nav-link:hover {
  color: #111827;
}
.sidebar-nav .nav-link.selected {
  color: #02AED0;
}
.sidebar-nav .nav-link.selected .nav-icon svg path {
  fill: #02AED0;
}
.sidebar-nav .nav-link[data-bs-toggle=collapse]::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: auto;
  background-color: #000000;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="9" height="5" viewBox="0 0 9 5" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.16688 5.00021C3.95354 5.00021 3.74021 4.91854 3.57771 4.75604L0.244375 1.42271C-0.0814583 1.09688 -0.0814583 0.570208 0.244375 0.244375C0.570208 -0.0814583 1.09688 -0.0814583 1.42271 0.244375L4.17688 2.99854L6.92104 0.348542C7.25354 0.029375 7.77938 0.0385417 8.09938 0.369375C8.41938 0.700208 8.41021 1.22854 8.07938 1.54771L4.74604 4.76604C4.58354 4.92271 4.37521 5.00021 4.16688 5.00021" /></svg>') no-repeat center center;
  mask: url('data:image/svg+xml;utf8,<svg width="9" height="5" viewBox="0 0 9 5" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.16688 5.00021C3.95354 5.00021 3.74021 4.91854 3.57771 4.75604L0.244375 1.42271C-0.0814583 1.09688 -0.0814583 0.570208 0.244375 0.244375C0.570208 -0.0814583 1.09688 -0.0814583 1.42271 0.244375L4.17688 2.99854L6.92104 0.348542C7.25354 0.029375 7.77938 0.0385417 8.09938 0.369375C8.41938 0.700208 8.41021 1.22854 8.07938 1.54771L4.74604 4.76604C4.58354 4.92271 4.37521 5.00021 4.16688 5.00021" /></svg>') no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform 0.3s ease, background-color 0.2s ease;
}
.sidebar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true] {
  font-weight: 600;
}
.sidebar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true]::after {
  transform: rotate(180deg);
  background-color: #000000;
}
.sidebar-nav .submenu-link {
  color: #6b7280;
  transition: all 0.2s ease;
}
.sidebar-nav .submenu-link:hover {
  color: #111827;
}
@media (max-width: 991.98px) {
  .sidebar-nav {
    width: 100%;
    padding: 24px;
  }
  .sidebar-nav .nav-item {
    margin-bottom: 4px !important;
  }
  .sidebar-nav .nav-link {
    height: 56px;
  }
  .sidebar-nav .nav-link > div {
    width: 100%;
  }
  .sidebar-nav .nav-link .toggle-icon {
    margin-left: auto !important;
  }
  .sidebar-nav .nav-link span:not(.nav-icon):not(.toggle-icon) {
    font-size: 16px !important;
  }
}

.submenu-item-link {
  font-size: 14px;
  padding: 8px 0;
  width: fit-content;
  color: #6b7280;
  font-weight: 400;
  transition: all 0.2s ease;
}
.submenu-item-link::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  background-color: #9ca3af;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="14" height="14" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.4835 10.3128L13.1502 6.14616C12.8627 5.78616 12.3377 5.72866 11.9793 6.01616C11.6193 6.30283 11.561 6.82783 11.8485 7.18699L14.0993 10.0003H6.66602C6.20685 10.0003 5.83268 9.62616 5.83268 9.16699V5.00033C5.83268 4.53949 5.45935 4.16699 4.99935 4.16699C4.53935 4.16699 4.16602 4.53949 4.16602 5.00033V9.16699C4.16602 10.5453 5.28768 11.667 6.66602 11.667H14.0993L11.8485 14.4795C11.561 14.8387 11.6193 15.3637 11.9793 15.6503C12.1327 15.7737 12.3168 15.8337 12.4993 15.8337C12.7435 15.8337 12.986 15.7262 13.1502 15.5203L16.4835 11.3537C16.7268 11.0495 16.7268 10.617 16.4835 10.3128" /></svg>') no-repeat center center;
  mask: url('data:image/svg+xml;utf8,<svg width="14" height="14" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.4835 10.3128L13.1502 6.14616C12.8627 5.78616 12.3377 5.72866 11.9793 6.01616C11.6193 6.30283 11.561 6.82783 11.8485 7.18699L14.0993 10.0003H6.66602C6.20685 10.0003 5.83268 9.62616 5.83268 9.16699V5.00033C5.83268 4.53949 5.45935 4.16699 4.99935 4.16699C4.53935 4.16699 4.16602 4.53949 4.16602 5.00033V9.16699C4.16602 10.5453 5.28768 11.667 6.66602 11.667H14.0993L11.8485 14.4795C11.561 14.8387 11.6193 15.3637 11.9793 15.6503C12.1327 15.7737 12.3168 15.8337 12.4993 15.8337C12.7435 15.8337 12.986 15.7262 13.1502 15.5203L16.4835 11.3537C16.7268 11.0495 16.7268 10.617 16.4835 10.3128" /></svg>') no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.2s ease;
}
.submenu-item-link:hover {
  color: #111827 !important;
  font-weight: 600 !important;
}
.submenu-item-link:hover::before {
  background-color: #111827;
}
.submenu-item-link.active, .submenu-item-link.selected {
  color: #02AED0 !important;
  font-weight: 600 !important;
}
.submenu-item-link.active::before, .submenu-item-link.selected::before {
  background-color: #02AED0;
}

@media (max-width: 991.98px) {
  .submenu-item-link {
    font-size: 14px;
  }
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1030;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sidebar-overlay.show {
  display: block;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
    width: 100%;
    max-width: 100%;
  }
  .dashboard-sidebar.show {
    transform: translateX(0);
  }
}
.sidebar-mobile-header {
  border-bottom: 1px solid #e5e7eb;
  padding: 32px 16px 12px 16px;
}

.dashboard-main {
  margin-left: 250px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .dashboard-main {
    margin-left: 0;
    height: calc(100vh - 84px);
    overflow-y: auto;
    padding-top: 84px;
  }
}
.dashboard-header {
  border-bottom: 1px solid transparent;
}

.profile-avatar {
  background-color: #f8fafc;
}

.profile-dropdown .dropdown-menu {
  border: 1px solid #f1f5f9;
}
.profile-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #f8fafc;
}

.stepper-container {
  position: relative;
  padding: 5px 0;
}

.dashboard-banner {
  background-color: #FFFFFF;
}

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bottom-sheet.show {
  transform: translateY(0);
}

.bottom-sheet-content {
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.bottom-sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bottom-sheet-overlay.show {
  display: block;
  opacity: 1;
}

.text-10 {
  font-size: 10px;
}

.text-11 {
  font-size: 11px;
}

.text-12 {
  font-size: 12px;
}

.text-13 {
  font-size: 13px;
}

.text-14 {
  font-size: 14px;
}

.text-16 {
  font-size: 16px;
}

.text-18 {
  font-size: 18px;
}

.text-20 {
  font-size: 20px;
}

.text-24 {
  font-size: 24px;
}

.icon-16 {
  width: 16px;
  height: 16px;
}

.icon-28 {
  width: 28px;
  height: 28px;
}

.icon-32 {
  width: 32px;
  height: 32px;
}

.icon-36 {
  width: 36px;
  height: 36px;
}

.icon-40 {
  width: 40px;
  height: 40px;
}

.icon-56 {
  width: 56px;
  height: 56px;
}

.logo-30 {
  height: 30px;
}

.logo-35 {
  height: 35px;
}

.logo-40 {
  height: 40px !important;
}

.logo-48 {
  height: 48px !important;
}

.text-cyan {
  color: #02AED0 !important;
}

.bg-cyan {
  background-color: #02AED0 !important;
}

.text-dark-custom {
  color: #000000 !important;
}

.stepper-item-box {
  border-left: 1px solid #e5e7eb;
  padding-left: 18px;
  min-height: 160px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 16px;
}
.stepper-item-box.active {
  border-left: 2px solid #d1d5db;
}
.stepper-item-box.completed {
  border-left: 2px solid #02AED0;
}

.step-status-hidden {
  font-size: 11px;
  visibility: hidden;
}

.step-icon-completed {
  width: 20px;
  height: 20px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-hopi-green {
  color: #07E43A !important;
}

.step-icon-active {
  width: 16px;
  height: 16px;
  border: 1.5px dashed #9ca3af;
}

.step-icon-disabled {
  width: 16px;
  height: 16px;
  border: 1.5px solid #d1d5db;
}

.dropdown-min-180 {
  min-width: 180px;
}

.modal-max-500 {
  max-width: 500px;
}

@media (max-width: 991.98px) {
  .documents-modal {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 991.98px) {
  .documents-modal .modal-dialog {
    align-items: flex-end;
    margin: 0;
    min-height: 100%;
  }
}
.documents-modal .modal-content {
  border-radius: 24px !important;
  padding: 40px !important;
}
@media (max-width: 991.98px) {
  .documents-modal .modal-content {
    padding: 24px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    width: 100%;
  }
}

.btn-cyan {
  background-color: #02AED0;
  color: #FFFFFF;
  border: none;
}
.btn-cyan:hover {
  background-color: rgb(1.5142857143, 131.7428571429, 157.4857142857);
}

.dashboard-banner-wrap {
  cursor: pointer;
  border: 1px solid #dcdee5;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  transition: opacity 0.2s ease;
}
.dashboard-banner-wrap:hover {
  opacity: 0.95;
}

.dashboard-top-header {
  height: 80px;
  padding: 12px 30px;
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
}

@media (min-width: 992px) {
  .sidebar-overlay,
  .bottom-sheet,
  .bottom-sheet-overlay {
    display: none !important;
  }
  .dashboard-wrapper {
    display: flex;
  }
  .dashboard-content {
    padding-left: 80px;
    padding-right: 80px;
  }
  .dashboard-sidebar {
    position: fixed;
    top: 80px;
    left: 0;
    width: 260px;
    flex-shrink: 0;
    height: calc(100vh - 80px);
    border-right: 1px solid #e5e7eb;
    overflow-y: auto;
  }
  .dashboard-main {
    margin-left: 260px !important;
    flex-grow: 1;
    min-width: 0;
    overflow-y: auto;
    padding-top: 110px;
    height: calc(100vh - 110px);
  }
}
@media (max-width: 991.98px) {
  .dashboard-content {
    padding: 26px 26px 0;
  }
}
.mobile-header {
  width: 100%;
  height: 84px;
  padding: 32px 16px 8px 16px;
  position: fixed;
  top: 0;
  z-index: 1020;
  border-bottom: 1px solid #e5e7eb;
}

.dashboard-wrapper {
  width: 100%;
  position: relative;
}

.bg-natural-grey {
  background-color: #F6F7FA !important;
}

.border-cyan {
  border-color: #02AED0 !important;
}

.border-2 {
  border-width: 2px !important;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.profile-btn .profile-name {
  color: #000000;
  transition: color 0.2s ease;
}
.profile-btn .profile-avatar {
  background-color: #F6F7FA;
  color: #000000;
  border: 2px solid transparent !important;
  transition: all 0.2s ease;
}
.profile-btn.show .profile-name {
  color: #02AED0 !important;
}
.profile-btn.show .profile-avatar {
  background-color: #FFFFFF !important;
  border-color: #02AED0 !important;
  color: #02AED0 !important;
}

/* Email Verification Info Bar */
.info-bar {
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
}

.info-bar-icon {
  width: 24px;
  height: 24px;
}

.info-bar-text {
  line-height: 1.4;
  font-size: 14px;
}

@media (max-width: 991px) {
  .info-bar-text {
    font-size: 12px;
  }
}
/* Email Verification Modal */
.email-verify-modal .modal-content {
  border-radius: 24px;
}

@media (max-width: 991px) {
  .email-verify-modal.custom-modal .modal-content {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}
.email-verify-modal .otp-input:focus {
  border-color: #02AED0 !important;
  box-shadow: 0 0 0 0.25rem rgba(2, 174, 208, 0.25) !important;
}

.btn-gradient {
  background-image: linear-gradient(102deg, #fa0 0%, #ef2980 100%);
  color: #FFFFFF;
  border: none;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #F15A24 0%, #ED1E79 100%);
  color: #FFFFFF;
}

.btn-dark-outline {
  background-color: rgba(26, 26, 26, 0.6);
  color: #F15A24;
  border-radius: 999px;
  border-style: solid;
  border-width: 1px;
  border-image-source: linear-gradient(102deg, #fa0 0%, #ef2980 100%);
  border-image-slice: 1;
}
.btn-dark-outline:hover {
  background-color: rgba(236, 82, 84, 0.1);
  color: #F15A24;
  border-color: #F15A24;
}

.banner-btn-gradient {
  background-image: linear-gradient(102deg, #fa0 0%, #ef2980 100%);
  border: none;
  width: 262px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  color: #FFFFFF;
}

.banner-btn-outline {
  position: relative;
  width: 262px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  background: linear-gradient(97deg, #fa0 0%, #ef2980 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.banner-btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 999px;
  background: linear-gradient(97deg, #fa0 0%, #ef2980 100%);
  -webkit-mask: linear-gradient(#FFFFFF 0 0) content-box, linear-gradient(#FFFFFF 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.login-btn-gradient {
  background-image: linear-gradient(102deg, #fa0 0%, #ef2980 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  padding: 16px 44px;
  font-size: 16px;
  font-weight: 500;
  width: 280px;
  transition: all 0.3s ease;
}
.login-btn-gradient:hover {
  background-image: linear-gradient(102deg, #e69900 0%, #d62271 100%);
  color: #FFFFFF;
}
.login-btn-gradient:disabled {
  color: white;
  cursor: not-allowed;
}
@media (max-width: 991px) {
  .login-btn-gradient {
    width: 100%;
  }
}

.form-control-custom,
.form-select-custom {
  border: 1px solid #E5E5E5;
  border-radius: 30px;
  padding: 16px 24px;
  font-size: 14px;
  color: #000000;
  box-shadow: none;
  transition: border-color 0.3s ease;
  width: 100%;
}
.form-control-custom:focus,
.form-select-custom:focus {
  border-color: #02AED0;
  box-shadow: 0 0 0 0.2rem rgba(0, 174, 239, 0.25);
  outline: none;
  background-color: transparent;
}
.form-control-custom:-webkit-autofill, .form-control-custom:-webkit-autofill:hover, .form-control-custom:-webkit-autofill:focus, .form-control-custom:-webkit-autofill:active,
.form-select-custom:-webkit-autofill,
.form-select-custom:-webkit-autofill:hover,
.form-select-custom:-webkit-autofill:focus,
.form-select-custom:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 50px white inset !important;
  -webkit-text-fill-color: #000000 !important;
  transition: background-color 5000s ease-in-out 0s;
}
.form-control-custom::placeholder,
.form-select-custom::placeholder {
  color: #8E8E93;
}
.form-control-custom::-ms-reveal, .form-control-custom::-ms-clear,
.form-select-custom::-ms-reveal,
.form-select-custom::-ms-clear {
  display: none !important;
}

input::-ms-reveal,
input::-ms-clear {
  display: none !important;
}

.input-icon-wrapper,
.form-floating:has(.password-toggle),
.form-floating:has(.input-icon) {
  position: relative;
}
.input-icon-wrapper .form-control-custom,
.form-floating:has(.password-toggle) .form-control-custom,
.form-floating:has(.input-icon) .form-control-custom {
  padding-right: 55px !important;
}
.input-icon-wrapper.has-validation .form-control-custom.pe-5,
.input-icon-wrapper.has-validation .form-control-custom, .input-icon-wrapper:has(.validation-icon) .form-control-custom.pe-5,
.input-icon-wrapper:has(.validation-icon) .form-control-custom,
.form-floating:has(.password-toggle).has-validation .form-control-custom.pe-5,
.form-floating:has(.password-toggle).has-validation .form-control-custom,
.form-floating:has(.password-toggle):has(.validation-icon) .form-control-custom.pe-5,
.form-floating:has(.password-toggle):has(.validation-icon) .form-control-custom,
.form-floating:has(.input-icon).has-validation .form-control-custom.pe-5,
.form-floating:has(.input-icon).has-validation .form-control-custom,
.form-floating:has(.input-icon):has(.validation-icon) .form-control-custom.pe-5,
.form-floating:has(.input-icon):has(.validation-icon) .form-control-custom {
  padding-right: 90px !important;
}

.input-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #000000;
}
.input-icon svg,
.input-icon img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.password-toggle {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.password-toggle:hover {
  color: #4B5563;
}
.has-validation .password-toggle {
  right: 54px;
}
input:placeholder-shown ~ .password-toggle {
  display: none !important;
}

.form-floating > .form-control-custom {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
  padding: 1rem 1.2rem;
}
.form-floating > label {
  padding: 1rem 1.25rem;
  color: #8E8E93;
  font-size: 14px;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  position: relative;
}
.custom-checkbox label {
  cursor: pointer;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox input:checked ~ .checkmark {
  background: linear-gradient(90deg, #F15A24 0%, #ED1E79 100%);
  border-color: transparent;
}
.custom-checkbox input:checked ~ .checkmark::after {
  content: "";
  width: 10px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  margin-bottom: 2px;
}

.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #D1D1D1;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.checkbox-text {
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
}
.checkbox-text a {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}

.register-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .register-progress {
    margin-top: 50px;
  }
}

.register-progress-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  border: none;
}
.progress-step.active .progress-circle {
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23FA7934' /%3E%3Cstop offset='100%25' stop-color='%23EE3A69' /%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='12' cy='12' r='11' stroke='url(%23grad)' stroke-width='2' stroke-dasharray='4'/%3E%3C/svg%3E");
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
}
.progress-step.active .progress-label {
  background: linear-gradient(90deg, #F15A24 0%, #ED1E79 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.progress-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.progress-label {
  font-size: 14px;
  font-weight: 600;
  color: #F15A24;
  position: absolute;
  top: 32px;
  white-space: nowrap;
}

.progress-line {
  width: 100px;
  height: 2px;
  background-color: #E5E5E5;
  margin: 0 8px;
  position: relative;
  z-index: 0;
}
@media (max-width: 991px) {
  .progress-line {
    width: 50px;
  }
}
.progress-line.active {
  background-image: linear-gradient(91deg, #fa0 0%, #ef2980 100%);
}

.login-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .login-actions {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.auth-help-link {
  font-size: 13px;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.auth-help-link strong {
  margin-left: 8px;
  text-decoration: underline;
}

.text-cyan {
  color: #02AED0 !important;
}

.btn-cyan {
  background-color: #02AED0;
  color: #FFFFFF;
  border: none;
  border-radius: 40px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}
.btn-cyan:hover {
  background-color: #009CC2;
  color: #FFFFFF;
}
.btn-cyan:active, .btn-cyan:focus, .btn-cyan.btn-check:checked + .btn-cyan, .btn-cyan.active, .btn-cyan.show, .btn-cyan:first-child:active {
  background-color: #02AED0 !important;
  color: #FFFFFF !important;
  border-color: #02AED0 !important;
}
.btn-cyan:disabled {
  background-color: #9ca3af;
  color: #FFFFFF;
  cursor: not-allowed;
}
@media (max-width: 991px) {
  .btn-cyan {
    width: 100%;
  }
}

.btn-light {
  background-color: #F6F7FA;
  color: #000000;
  border: none;
  border-radius: 40px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}
.btn-light:hover {
  background-color: #f1f5f9;
  color: #000000;
}

.hopi-logo {
  height: 56px !important;
  width: auto;
}

.mw-240 {
  max-width: 240px !important;
}
@media (max-width: 991px) {
  .mw-240 {
    max-width: 100% !important;
  }
}

.mw-400 {
  max-width: 400px !important;
}

.mw-440 {
  max-width: 440px !important;
}

.mw-500 {
  max-width: 500px !important;
}

.mw-600 {
  max-width: 600px !important;
}
@media (max-width: 991px) {
  .mw-600 {
    max-width: 100% !important;
  }
}

.mw-680 {
  max-width: 680px !important;
}

.mw-956 {
  max-width: 956px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.z-4 {
  z-index: 4 !important;
}

.z-5 {
  z-index: 5 !important;
}

.z-10 {
  z-index: 10 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.cursor-default {
  cursor: default !important;
}

.phone-input {
  padding-left: 60px !important;
}

.timer-absolute-right {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.custom-checkbox.theme-cyan input:checked ~ .checkmark {
  background: #02AED0;
  border-color: #02AED0;
}

.register-progress-inner.theme-cyan .progress-step.active .progress-circle {
  border: 2px dashed #02AED0;
  background-image: none;
  background-color: transparent;
}
.register-progress-inner.theme-cyan .progress-step.active .progress-label {
  color: #02AED0;
  background: none;
  -webkit-text-fill-color: initial;
}
.register-progress-inner.theme-cyan .progress-step.completed .progress-circle {
  border: 2px solid #02AED0;
  background-color: #FFFFFF;
  color: #02AED0;
}
.register-progress-inner.theme-cyan .progress-step.completed .progress-circle svg {
  stroke-width: 2;
}
.register-progress-inner.theme-cyan .progress-line.active {
  background: #02AED0;
}

.custom-alert-error {
  background-color: #FDEAEF;
  color: #E2004F;
  border: none;
  border-radius: 20px;
  font-size: 12px;
  padding: 12px 16px;
  margin-bottom: 30px;
}

.form-control-custom.is-invalid {
  border-color: #E2004F !important;
  color: #E2004F !important;
  background-image: none !important;
}
.form-control-custom.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(226, 0, 79, 0.1) !important;
}
.form-control-custom.is-invalid ~ label {
  color: #E2004F !important;
}
.form-control-custom.is-invalid ~ .validation-icon svg {
  stroke: #E2004F !important;
}

.form-control-custom.is-valid {
  background-image: none !important;
}

.error-tooltip-bubble {
  position: absolute;
  top: 100%;
  margin-top: -5px;
  margin-right: 14px;
  background: #E2004F;
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  z-index: 5;
  white-space: nowrap;
}
.error-tooltip-bubble::before {
  content: "";
  position: absolute;
  top: -4px;
  right: 15px;
  width: 8px;
  height: 8px;
  background: #E2004F;
  transform: rotate(45deg);
}

.input-icon.info-icon {
  cursor: pointer;
  color: #000000;
}
.input-icon.info-icon svg,
.input-icon.info-icon img {
  vertical-align: top;
}
.input-icon.info-icon:hover {
  opacity: 0.8;
}

.custom-hover-tooltip {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: -5px;
  margin-right: 14px;
  background: #000000;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  z-index: 15;
  white-space: normal;
  width: max-content;
  max-width: min(360px, 90vw);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}
.custom-hover-tooltip::before {
  content: "";
  position: absolute;
  top: -4px;
  right: 15px;
  width: 10px;
  height: 10px;
  background: #000000;
  transform: rotate(45deg);
}

.input-icon-wrapper {
  position: relative;
}
.input-icon-wrapper .info-icon:hover ~ .custom-hover-tooltip,
.input-icon-wrapper .validation-icon:hover ~ .custom-hover-tooltip,
.input-icon-wrapper input:focus ~ .custom-hover-tooltip.focus-tooltip {
  opacity: 1;
  visibility: visible;
}

.password-rules-tooltip {
  min-width: 200px;
}

.password-rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.password-rules-list .rule {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}
.password-rules-list .rule::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.2s ease;
}
.password-rules-list .rule.met {
  color: #4ade80;
}
.password-rules-list .rule.met::before {
  content: "✓";
  border-color: #4ade80;
  background-color: rgba(74, 222, 128, 0.15);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
}

.custom-tooltip .tooltip-inner {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 11px;
}
.custom-tooltip .tooltip-arrow::before {
  border-bottom-color: #000000;
}

.verification-code-wrapper {
  margin: 0 auto;
}

.timer-circle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timer-circle-lg {
  width: 48px;
  height: 48px;
}

.toast-badge {
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.toast-success {
  background-color: rgba(0, 181, 226, 0.1);
  color: #02AED0;
}

.toast-error {
  background-color: #FDEAEF;
  color: #E2004F;
}

.toast-warning {
  background-color: rgba(243, 146, 0, 0.1);
  color: #F15A24;
}

@media (max-width: 991px) {
  .auth-toast--desktop {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .auth-toast--mobile {
    display: none !important;
  }
}

.carousel-overlay {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000000;
  transition: visibility 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}
.carousel-btn:hover {
  background: #FFFFFF;
}

.carousel-dots {
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dots .dot.active {
  width: 24px;
  background: #000000;
  border-radius: 4px;
}
.carousel-dots .dot:hover:not(.active) {
  background: #6b7280;
}

.custom-modal .modal-content {
  border-radius: 24px;
  border: none;
  padding: 24px;
}
@media (max-width: 991px) {
  .custom-modal .modal-content {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 32px 24px;
  }
}
.custom-modal .modal-header {
  border-bottom: none;
  padding: 0 0 16px 0;
  align-items: flex-start;
}
.custom-modal .modal-header .btn-close {
  margin: 0;
  padding: 0;
  opacity: 1;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-modal .modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.custom-modal .modal-body {
  padding: 0;
  color: #000000;
}
.custom-modal .modal-body .contract-subtitle {
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.custom-modal .modal-body .contract-text {
  font-size: 13px;
  line-height: 1.6;
  max-height: 40vh;
  overflow-y: auto;
  padding-right: 8px;
}
.custom-modal .modal-body .contract-text::-webkit-scrollbar {
  width: 4px;
}
.custom-modal .modal-body .contract-text::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}
.custom-modal .modal-body .contract-text::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}
.custom-modal .modal-footer {
  border-top: none;
  padding: 24px 0 0 0;
}
.custom-modal .modal-footer .btn-close-modal {
  width: 100%;
  background-color: #e5e7eb;
  color: #000000;
  border: none;
  border-radius: 40px;
  padding: 16px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
.custom-modal .modal-footer .btn-close-modal:hover {
  background-color: #f1f5f9;
}

@media (max-width: 991px) {
  .custom-modal {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .custom-modal .modal-content {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .custom-modal.modal .modal-dialog {
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: flex-end;
    min-height: 100%;
  }
  .custom-modal.fade .modal-dialog {
    transform: translate(0, 100%);
  }
  .custom-modal.show .modal-dialog {
    transform: none;
  }
}
.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.8 !important;
}

#documentsModal .modal-content {
  background-color: #FFFFFF;
}
#documentsModal .custom-tabs .nav-item {
  flex: 1 1 0%;
}
#documentsModal .custom-tabs .nav-link {
  transition: all 0.2s ease;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#documentsModal .custom-tabs .nav-link::after {
  display: block;
  content: attr(data-text);
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
#documentsModal .custom-tabs .nav-link.active {
  background-color: transparent !important;
  color: #02AED0 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}
@media (min-width: 992px) {
  #documentsModal .modal-dialog {
    max-width: 460px;
  }
  #documentsModal .custom-tabs .nav-link {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #documentsModal .custom-tabs .nav-link.active {
    box-shadow: none !important;
  }
  #documentsModal .btn-cyan {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
#documentsModal .doc-list li .doc-icon {
  background-color: #FFFFFF;
  border-color: #e5e7eb !important;
}

/*# sourceMappingURL=style.css.map */
