:root {
  --brand-yellow: #f8aa49;
  --brand-hover-yellow: #f0982d;
  --brand-blue: #295ca7;
  --brand-brown: #9f5626;
  --app-error: #870202;
  --app-s-error: rgb(139 9 9);
  --app-white: #fff9f2;
  --app-success: rgb(46, 130, 46);


  --bg-main: #f2ebd8;
  --bg-input: #ffffff;
  --text-main: #1f2b3a;
  --text-muted: #4a5568;
  --brand-primary: #e89b36;
  --brand-primary-dark: #c97c1d;
  --brand-accent: #0f3a67;
  --ring-color: rgba(232, 155, 54, 0.2);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.12);
  --radius-xl: 24px;
  --radius-pill: 999px;

}

body {
  min-height: 100vh;
  background: #2c2c2c;
  background: #fff9f2;
  background-size: cover;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-main);
}

.link-primary {
  color: var(--brand-blue) !important;
  -webkit-text-decoration-color: transparent !important;
  text-decoration-color: transparent !important;
}

.fs-1 {
  font-size: 0.625rem !important;
}

.fs-2 {
  font-size: 0.75rem !important;
}

.fs-3 {
  font-size: 0.875rem !important;
}

.fs-4 {
  font-size: 1rem !important;
}

.fs-5 {
  font-size: 1.125rem !important;
}

.fs-6 {
  font-size: 1.25rem !important;
}

.fs-7 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-8 {
  font-size: calc(1.3125rem + 0.75vw) !important;
}

.fs-9 {
  font-size: calc(1.35rem + 1.2vw) !important;
}

.fs-10 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-11 {
  font-size: calc(1.40625rem + 1.875vw) !important;
}

.fs-12 {
  font-size: calc(1.425rem + 2.1vw) !important;
}

.fs-13 {
  font-size: calc(1.46875rem + 2.625vw) !important;
}

.lh-2 {
  line-height: 1.35 !important;
}

.br-round {
  border-radius: 30px !important;
}

/* phone  */
.iti__country-list {
  background-color: #fff9f3e0 !important;
  border: 0px solid transparent !important;
  border-radius: 5px !important;
  max-height: 226px;
  font-size: 14px;
}

.iti.iti--allow-dropdown.iti--show-flags {
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  max-height: 38px;
}

.invalid-feedback {
  font-size: .85em;
  font-weight: lighter;
  color: var(--app-error);
  text-align: left;
}

/* phone */

.hero-text h1 {
  font-weight: 800;
  font-size: 2.5rem;
  color: #9d4b1b;
}

.hero-text p.lead {
  font-size: 1rem;
  color: #333;
}

.cta-box {
  /* border-radius: 40px; */
  /* background-color: #fbeee0; */
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cta-item {
  text-align: center;
  flex: 1 1 20%;
  margin: 0.5rem 0;
}

.cta-item i {
  display: block;
  font-size: 1.5rem;
  color: #a35b17;
  margin-bottom: 0.3rem;
}

.form-control:not(.otp-fake-input) {
  padding-left: 40px;
}

.input-icon {
  position: absolute;
  top: 10px;
  left: 15px;
  color: var(--brand-yellow);
}

.btn-auth {
  background-color: var(--brand-yellow);
  color: #fffcf6;
  transition: 0.3s ease-in-out;
}

.btn-auth:hover {
  background-color: var(--brand-hover-yellow);
  color: #f5f5f5;
  transform: scale(1.01)
}

.form-check-input:checked {
  background-color: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

input:focus-visible {
  outline: 1px solid var(--brand-brown);
}

.form-control:focus {
  border-color: var(--brand-brown);
  outline: 0;
  box-shadow: none;
}

button.swal2-confirm.swal2-styled,
.swal2-cancel.swal2-styled {
  background: transparent;
  border: 0.1rem solid var(--brand-brown);
  border-radius: 30px;
  padding: 4px 20px;
  color: #545454;
  transition: 0.3s ease-in-out;
}

.swal2-cancel.swal2-styled {
  border: 0.1rem solid var(--app-error);
  color: var(--app-error);
}


button.swal2-confirm.swal2-styled:hover {
  background: var(--brand-brown);
  color: white;
  transform: scale(1.01)
}

.swal2-cancel.swal2-styled:hover {
  transform: scale(1.01);
}

.swal2-actions {
  width: 100%;
  justify-content: space-around;
}


div:where(.swal2-container) h2:where(.swal2-title) {
  max-width: 100%;
  font-size: 1.25em;
  color: var(--brand-brown);
}

div:where(.swal2-container) .swal2-html-container {
  font-size: 1em;
}

.fs-label {
  font-size: 0.85rem;
  font-weight: 300
}


.logo-section img {
  max-width: 150px;
}

.vbanner-holder {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
}

.img-fluid {
  width: 100%;
  height: auto;
  max-width: 500px;
}

.d-ontop {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.bg-cover {
  background-size: cover
}

.bg-contain {
  background-size: contain
}

.bg-norepeat {
  background-repeat: no-repeat
}

.bg-bottom-center {
  background-position: bottom center;
}

.bg-bottom-right {
  background-position: bottom right;
}

.bg-bottom-left {
  background-position: bottom left;
}

.bg-center-center {
  background-position: center center;
}

.auth-section {
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
  /* background: linear-gradient(82deg, #00000003, #d08c65); */
}

.bg-two-third {
  background-size: contain;
}

.b-auto-h100 {
  background-size: auto 100vh;
}

.b-auto-h90 {
  background-size: auto 90vh;
}

.b-auto-h75 {
  background-size: auto 75vh;
}

.min-cvh-100 {
  min-height: auto;
}

.min-vh-50 {
  min-height: 50vh;
}

@media screen and (min-width:1200px) {
  .min-cvh-100 {
    min-height: 100vh;
  }
}

.alert-danger {
  background: #f8d7da45;
  color: #ae2929;
  font-size: 16px;
  font-weight: 300;
  font-family: inherit;
}


/* @media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 85vw;
  }
} */


@media screen and (min-width:1200px) {
  .bg-two-third {
    background-size: 75vw 75vh;
  }

  .auth-section {
    background-size: 100vw 100vh;
    background-image: url('../../../assets/images/components/banner-bkg.jpg')
  }
}

@media screen and (max-width:992px) {
  .text-sm-black {
    color: #333 !important;
  }
}

.login-form {
  max-width: 320px;
  min-width: 300px;
  margin-left: auto;
}

a.toggle-p {
  position: absolute;
  top: 20px;
  right: 5%;
  transform: translateY(-50%);
  color: #21252985;
}


/* loader */


div#ajax-loader {
  display: block;
  width: 100vw;
  height: 100%;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #1c232f8c;
}

div#ajax-loader {
  /* display: none; */
}

.loader-wrapper {
  margin: auto;
  margin-top: calc(20vh);
  padding: 15px 20px;
  height: fit-content;
  width: fit-content;
  /* -webkit-box-shadow: 0px 0px 21px -3px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 21px -3px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 21px -3px rgba(0,0,0,0.5); */
  border-radius: 10px;
  min-height: 165px;
  min-width: 165px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #142e4ae0; */
}

.text-loader {
  color: #f4811f;
}

.loader-wrapper>div {
  margin-top: auto;
  margin-bottom: auto;
}

.loader-wrapper>div.spinner-border {
  width: 5vw;
  height: 5vw;
}

@keyframes infinityLooping {
  0% {
    background: #f4811f;
  }

  33% {
    background: #08509a;
  }

  66% {
    background: #08509a;
  }

  100% {
    background: #f4811f;
  }
}

span.loading-circle {
  width: 12px;
  height: 12px;
  background: white;
  animation: infinityLooping 3s infinite;
}


span.loading-circle:nth-child(1) {
  animation-delay: 0s;
}

span.loading-circle:nth-child(2) {
  animation-delay: 0.05s;
}

span.loading-circle:nth-child(3) {
  animation-delay: 0.75s;
}


.table-responsive {
  overflow-x: visible !important;
}

.dataTables_wrapper>.row {
  overflow: visible !important;
}



/* added auth pages  */

.auth-wrapper {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: var(--bg-main);
}

.auth-card {
  width: min(1100px, 100%);
}

@media screen and (min-width: 1200px) {
  .auth-card {
    width: min(1200px, 100%);
  }
}

.left-visual {
  min-height: 620px;
  background:
    linear-gradient(transparent, transparent),
    url("/assets/Screenshot_2026-03-26_at_11.42.55-2a45a32a-bff6-4323-8420-21969616a605.png") left center / cover no-repeat;
}

.right-pane {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  overflow: hidden;
}

.ring-image {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 95vh;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.background-assets {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background-assets-wrapper {
  position: relative;
  max-width: 100vw;
  height: 100%;
  margin: 0 auto;
}

.background-assets-wrapper img {
  position: absolute;
  height: auto;
}

.happy-investor-image {
  bottom: 0;
  left: 7.5vw;
  width: 45vw;
  max-width: 800px;
  z-index: 2;
}

.bkg-support-image {
  bottom: 15vw;
  left: 15vw;
  width: 30vw;
  max-width: 500px;
  z-index: 1;
}

.growth-investment-image {
  bottom: 0;
  right: 0;
  width: 40vw;
  max-width: 800px;
  z-index: 2;
}

.login-box {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  text-align: center;
  background: var(--bg-main);
  background: linear-gradient(182deg, #f2ead8, #f2ead89e, #f2ead858);
}

.brand-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.title {
  font-weight: 700;
  color: #7b3f1e;
  margin-bottom: 0.25rem;
  font-size: 2rem;
}

.subtitle {
  color: var(--brand-accent);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.form-control-pill {
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--bg-input);
  padding: 0.8rem 1rem 0.8rem 2.7rem;
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.form-control-pill.has-vw-toggle{
  padding-right: 2.7rem;
}

.form-control-pill:focus {
  box-shadow: 0 0 0 0.25rem var(--ring-color);
  border-color: transparent;
}

.field-icon, .can-toggle {
  position: absolute;
  color: var(--brand-primary);
  font-size: 0.95rem;
  font-size: 1.125rem;
  top: 15px;
  left: 15px;
}

.can-toggle{
  color: var(--text-muted);
  right: 15px;
  left: auto;
  z-index: 10;
  cursor: pointer;
  opacity: 0.75;
}

.form-check-label,
.forgot-link {
  font-size: 0.9rem;
  color: #2f2f2f;
  text-decoration: none;
}

.forgot-link:hover {
  color: var(--brand-primary-dark);
  text-decoration: underline;
}

.btn-otp {
  background: var(--brand-primary);
  border: 1px solid var(--brand-primary-dark);
  color: #1f1f1f;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 0.65rem 1rem;
  width: 100%;
  letter-spacing: 0.2px;
}

.btn-otp:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  color: #fff;
}

.forgot-link:hover {
  color: var(--brand-primary-dark);
  text-decoration: underline;
}

.btn-otp,
.btn-cancel {
  background: var(--brand-primary);
  border: 1px solid var(--brand-primary-dark);
  color: var(--text-main);
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 0.65rem 1rem;
  width: 100%;
  letter-spacing: 0.2px;
}

.btn-cancel {
  background: transparent;
}

.btn-otp:hover,
.btn-cancel:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  color: #fff;
}

.bottom-link {
  color: #2f2f2f;
  font-size: 0.95rem;
}

.bottom-link a {
  color: #9a4f22;
  text-decoration: none;
  font-weight: 600;
}

.bottom-link a:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .left-visual {
    min-height: 300px;
  }

  .right-pane {
    min-height: 560px;
  }

  .title {
    font-size: 1.7rem;
  }
}

 .iti {
      width: 100%;
    }

.just-validate-error-label {
  font-weight: 400;
  font-family: inherit;
  font-size: 15px;
  /* color: rgb(139 9 9) !important; */
  color: var(--app-error) !important;
  text-align: left;
  padding-left: 20px;
}

input.just-validate-error-field {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23B81111'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23B81111' stroke='none'/%3E%3C/svg%3E");
  border-color: var(--app-error)
}

input.just-validate-error-field,
input.just-validate-success-field {
  background-position: right calc(.375em + .1875rem) center;
  background-repeat: no-repeat;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

input.just-validate-success-field {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
  border-color: var(--app-success)
}

input.just-validate-success-field:focus {
  border-color: var(--app-success);
  box-shadow: 0 0 0 .25rem #19875440
}

input.just-validate-error-field:focus,
select.just-validate-error-field:focus {
  border-color: var(--app-error);
  box-shadow: 0 0 0 .25rem #dc354540
}

.iti__selected-flag {
  padding: 14px 6px 0 11px;
}

/* added auth pages  */

/* loader  */


.mt-n1 {
  margin-top: -.25rem !important
}

.mt-n2 {
  margin-top: -.5rem !important
}

.mt-n3 {
  margin-top: -1rem !important
}

.mt-n4 {
  margin-top: -1.5rem !important
}

.mt-n5 {
  margin-top: -3rem !important
}

.mt-n6 {
  margin-top: -12px !important
}

.mt-n7 {
  margin-top: -30px !important
}

.mt-n8 {
  margin-top: -10px !important
}

.mt-n9 {
  margin-top: -20px !important
}

.mt-n10 {
  margin-top: -18px !important
}

.mt-n11 {
  margin-top: -93px !important
}

.mt-n12 {
  margin-top: -56px !important
}

.mt-n13 {
  margin-top: -36px !important
}

.ms-n1 {
  margin-left: -.25rem !important
}

.ms-n2 {
  margin-left: -.5rem !important
}

.ms-n3 {
  margin-left: -1rem !important
}

.ms-n4 {
  margin-left: -1.5rem !important
}

.ms-n5 {
  margin-left: -3rem !important
}

.ms-n6 {
  margin-left: -12px !important
}

.ms-n7 {
  margin-left: -30px !important
}

.ms-n8 {
  margin-left: -10px !important
}

.ms-n9 {
  margin-left: -20px !important
}

.ms-n10 {
  margin-left: -18px !important
}

.top-0 {
  top: 0 !important
}

.top-25 {
  top: 25% !important
}

.top-50 {
  top: 50% !important
}

.top-100 {
  top: 100% !important
}