@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --fin-primary: #1daba6;
  --fin-secondary: #162b4a;
}

body {
  font-family: "Inter", "Trebuchet MS", Arial, sans-serif;
}

.btn--base {
  background-color: var(--fin-primary) !important;
  border-color: var(--fin-primary) !important;
  color: #ffffff !important;
}

.btn--base:hover,
.btn--base:focus {
  background-color: #158f8a !important;
  border-color: #158f8a !important;
  color: #ffffff !important;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(22, 43, 74, 0.06);
}

.navbar-brand.logo img,
.account-form__logo img,
.user-data-header__logo img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}

.navbar-brand.logo img {
  max-width: 184px;
}

.nav-menu .nav-link {
  color: var(--fin-secondary) !important;
  font-weight: 700;
}

.nav-menu .nav-link:hover,
.login-registration-list__link:hover {
  color: var(--fin-primary) !important;
}

.footer-area {
  background: var(--fin-secondary);
  color: #ffffff;
}

.footer-area a,
.footer-area .footer-item__title,
.footer-area .sign-up-content__title,
.footer-area .bottom-footer-text {
  color: #ffffff;
}

.footer-area a:hover,
.footer-contact-menu__item-icon,
.social-list-wrapper .title {
  color: var(--fin-primary) !important;
}

.fc-footer {
  background: #162b4a;
  color: #ffffff;
  padding: 64px 0 24px;
}

.fc-footer__logo img {
  max-width: 210px;
  max-height: 72px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 18px;
}

.fc-footer__text {
  color: rgba(255, 255, 255, .74);
  max-width: 360px;
  line-height: 1.7;
  margin: 0;
  font-size: 14px;
}

.fc-footer h5 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}

.fc-footer a {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  margin-bottom: 10px;
}

.fc-footer a:hover {
  color: #1daba6;
}

.fc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.66);
  font-size: 14px;
  margin-top: 40px;
  padding-top: 20px;
}

/* FinConnect dashboard refresh */
.dashboard {
  --fc-primary: #1daba6;
  --fc-primary-dark: #168f8b;
  --fc-secondary: #162b4a;
  --fc-bg: #f5f8fb;
  --fc-card: #ffffff;
  --fc-text: #102033;
  --fc-muted: #667085;
  --fc-border: #dbe7ea;
  --fc-success: #12b76a;
  --fc-warning: #f59e0b;
  --fc-danger: #ef4444;
  background: var(--fc-bg);
  font-family: "Inter", "Trebuchet MS", Arial, sans-serif;
}

.dashboard .dashboard-body {
  background: var(--fc-bg);
}

.dashboard .dashboard__right {
  background: var(--fc-bg);
}

.dashboard .dashboard-header {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(22, 43, 74, .08);
  box-shadow: none;
}

.dashboard .dashboard__left,
.dashboard .fc-sidebar-shell {
  background: transparent;
}

.dashboard__inner > .fc-sidebar-shell,
.dashboard__left > .fc-sidebar-shell {
  width: 280px;
  flex: 0 0 280px;
}

.fc-dashboard-sidebar {
  min-height: calc(100vh - 28px);
  margin: 14px;
  background: #ffffff;
  border-radius: 28px;
  padding: 22px 18px;
  box-shadow: 0 20px 60px rgba(22, 43, 74, 0.08);
  border: 1px solid rgba(22, 43, 74, 0.06);
  display: flex;
  flex-direction: column;
}

.fc-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.fc-sidebar-brand img {
  max-width: 178px;
  max-height: 58px;
  object-fit: contain;
  border-radius: 12px;
}

.fc-sidebar-scroll {
  flex: 1;
}

.fc-sidebar-section-label {
  font-size: 11px;
  font-weight: 600;
  color: #98a2b3;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 22px 0 9px;
}

.fc-sidebar-section-label:first-child {
  margin-top: 0;
}

.fc-sidebar-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 14px;
  color: #667085 !important;
  font-size: 14px;
  font-weight: 500;
  transition: all .18s ease;
  position: relative;
  margin-bottom: 4px;
}

.fc-sidebar-link i {
  width: 20px;
  font-size: 19px;
  color: #98a2b3;
  transition: color .18s ease;
}

.fc-sidebar-link:hover {
  background: rgba(29, 171, 166, 0.08);
  color: #162b4a !important;
}

.fc-sidebar-link:hover i,
.fc-sidebar-link.active i {
  color: #1daba6;
}

.fc-sidebar-link.active {
  color: #162b4a !important;
  font-weight: 700;
  background: rgba(29, 171, 166, 0.10);
}

.fc-sidebar-link.active::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  border-radius: 999px;
  background: #1daba6;
}

.fc-sidebar-bottom-card {
  margin-top: 20px;
  border-radius: 22px;
  padding: 16px;
  background: linear-gradient(135deg, #162b4a, #1daba6);
  color: #ffffff;
}

.fc-sidebar-bottom-card strong,
.fc-sidebar-bottom-card p,
.fc-sidebar-bottom-card a {
  color: #ffffff;
}

.fc-sidebar-bottom-card strong {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}

.fc-sidebar-bottom-card p {
  opacity: .82;
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 12px;
}

.fc-sidebar-bottom-card a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255,255,255,.18);
  font-size: 13px;
  font-weight: 700;
}

.fc-header-subtitle {
  color: var(--fc-muted);
  font-size: 13px;
  margin: 2px 0 0;
}

.fc-header-balance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(29,171,166,0.10);
  color: #162b4a;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.fc-header-balance i {
  color: #1daba6;
  font-size: 18px;
}

.fc-dash {
  color: var(--fc-text);
}

.fc-dash-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(29, 171, 166, .18), transparent 36%),
    linear-gradient(135deg, #ffffff, #f0fbfb);
  border: 1px solid rgba(22, 43, 74, .08);
  box-shadow: 0 18px 44px rgba(22, 43, 74, .07);
  margin-bottom: 22px;
}

.fc-dash-kicker,
.fc-dash-card > span,
.fc-panel-head span,
.fc-client-action span {
  display: block;
  color: var(--fc-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.fc-dash-hero h1 {
  color: var(--fc-secondary);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}

.fc-dash-hero p,
.fc-client-action p {
  color: var(--fc-muted);
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
}

.fc-dash-actions,
.fc-panel-actions,
.fc-row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.fc-dash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.fc-dash-btn:hover {
  transform: translateY(-1px);
}

.fc-dash-btn--primary {
  background: var(--fc-primary);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(29, 171, 166, .18);
}

.fc-dash-btn--primary:hover {
  background: var(--fc-primary-dark);
}

.fc-dash-btn--light {
  background: #fff;
  color: var(--fc-secondary) !important;
  border-color: var(--fc-border);
}

.fc-dash-grid {
  display: grid;
  gap: 18px;
}

.fc-dash-grid--main {
  grid-template-columns: minmax(280px, .8fr) 1.2fr;
  margin-bottom: 18px;
}

.fc-dash-grid--content {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fc-dash-card,
.fc-stat-card {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(22,43,74,0.08);
  box-shadow: 0 14px 40px rgba(22,43,74,0.06);
}

.fc-dash-card {
  padding: 22px;
}

.fc-card-head,
.fc-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.fc-card-head h2,
.fc-client-action h2,
.fc-panel-head h3 {
  color: var(--fc-secondary);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.fc-card-head h2 {
  font-size: 2rem;
}

.fc-client-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #162b4a, #233f68);
}

.fc-client-action h2 {
  color: #fff;
  font-size: 1.55rem;
}

.fc-client-action p {
  color: rgba(255,255,255,.76);
}

.fc-progress-line {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: #e8f1f3;
  margin-bottom: 18px;
}

.fc-progress-line span {
  display: block;
  height: 100%;
  background: var(--fc-primary);
  border-radius: inherit;
}

.fc-profile-metrics,
.fc-money-grid,
.fc-stat-grid {
  display: grid;
  gap: 14px;
}

.fc-profile-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.fc-profile-metrics div,
.fc-money-grid div {
  border-radius: 16px;
  background: #f6fbfb;
  border: 1px solid rgba(22,43,74,.06);
  padding: 14px;
}

.fc-profile-metrics strong,
.fc-profile-metrics span,
.fc-money-grid strong,
.fc-money-grid span {
  display: block;
}

.fc-profile-metrics strong,
.fc-money-grid strong {
  color: var(--fc-secondary);
  font-size: 1.15rem;
  font-weight: 700;
}

.fc-profile-metrics span,
.fc-money-grid span {
  color: var(--fc-muted);
  font-size: 12px;
  margin-top: 2px;
}

.fc-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fc-stat-card {
  display: block;
  padding: 18px;
  color: var(--fc-text);
  transition: transform .2s ease, box-shadow .2s ease;
}

.fc-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(22,43,74,.09);
}

.fc-stat-card i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eef8f8;
  color: var(--fc-primary);
  font-size: 22px;
  margin-bottom: 14px;
}

.fc-stat-card strong,
.fc-stat-card span,
.fc-stat-card small {
  display: block;
}

.fc-stat-card strong {
  color: var(--fc-secondary);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.fc-stat-card span {
  color: var(--fc-text);
  font-weight: 600;
  margin-top: 7px;
}

.fc-stat-card small {
  color: var(--fc-muted);
  margin-top: 3px;
}

.fc-panel-head h3 {
  font-size: 1.15rem;
}

.fc-panel-head a,
.fc-dash-link,
.fc-list-row a,
.fc-service a {
  color: var(--fc-primary);
  font-size: 14px;
  font-weight: 700;
}

.fc-list-row,
.fc-match-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(22,43,74,.08);
}

.fc-list-row:first-of-type,
.fc-match-card:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.fc-list-row strong,
.fc-list-row span,
.fc-match-card strong,
.fc-match-card span,
.fc-match-card small {
  display: block;
}

.fc-list-row strong,
.fc-match-card strong {
  color: var(--fc-secondary);
  font-weight: 700;
}

.fc-list-row span,
.fc-match-card span,
.fc-match-card small {
  color: var(--fc-muted);
  font-size: 13px;
}

.fc-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #eef2f7;
  color: var(--fc-secondary);
}

.fc-status--success {
  background: rgba(18, 183, 106, .12);
  color: #087443;
}

.fc-status--warning {
  background: rgba(245, 158, 11, .14);
  color: #92400e;
}

.fc-status--info {
  background: rgba(29, 171, 166, .13);
  color: var(--fc-primary-dark);
}

.fc-money-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

.fc-empty {
  text-align: center;
  padding: 26px 18px;
  border-radius: 18px;
  background: #f8fbfc;
  border: 1px dashed var(--fc-border);
}

.fc-empty--compact {
  padding: 18px;
}

.fc-empty i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--fc-primary);
  background: #eef8f8;
  font-size: 22px;
  margin-bottom: 10px;
}

.fc-empty strong {
  display: block;
  color: var(--fc-secondary);
  font-weight: 700;
}

.fc-empty p {
  color: var(--fc-muted);
  margin: 5px auto 0;
  max-width: 360px;
}

.fc-review {
  border-top: 1px solid rgba(22,43,74,.08);
  padding-top: 16px;
}

.fc-review strong {
  color: var(--fc-secondary);
  font-size: 1.35rem;
}

.fc-review p {
  color: var(--fc-text);
  margin: 8px 0;
}

.fc-review span,
.fc-help-list {
  color: var(--fc-muted);
  font-size: 13px;
}

.fc-help-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.fc-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 18px;
  background: #fff7ed;
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, .22);
  padding: 14px 16px;
  margin-bottom: 18px;
}

.fc-alert a {
  color: #92400e;
  font-weight: 700;
  margin-left: auto;
}

@media (max-width: 1399px) {
  .fc-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .fc-dash-hero,
  .fc-client-action {
    display: block;
  }

  .fc-dash-actions,
  .fc-client-action .fc-dash-btn {
    margin-top: 16px;
  }

  .fc-dash-grid--main,
  .fc-dash-grid--content {
    grid-template-columns: 1fr;
  }

  .dashboard__inner > .fc-sidebar-shell,
  .dashboard__left > .fc-sidebar-shell {
    width: auto;
    flex: 0 0 auto;
  }

  .fc-dashboard-sidebar {
    margin: 0;
    min-height: 100vh;
    border-radius: 0 24px 24px 0;
    box-shadow: 16px 0 40px rgba(22, 43, 74, .12);
  }
}

@media (max-width: 575px) {
  .fc-dash-hero,
  .fc-dash-card {
    padding: 18px;
    border-radius: 20px;
  }

  .fc-stat-grid,
  .fc-profile-metrics,
  .fc-money-grid {
    grid-template-columns: 1fr;
  }

  .fc-list-row,
  .fc-match-card {
    display: block;
  }

  .fc-row-actions {
    margin-top: 10px;
  }

  .fc-dash-actions .fc-dash-btn,
  .fc-panel-actions .fc-dash-btn,
  .fc-client-action .fc-dash-btn {
    width: 100%;
  }

  .dashboard-header__inner {
    gap: 12px;
  }

  .user-info__right {
    gap: 8px;
  }

  .fc-header-balance {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 13px;
  }
}

@media (min-width: 576px) {
  .account-inner__right:has(.auth-login-form) {
    width: min(100%, 390px) !important;
  }

  .account-form-wrapper:has(.auth-login-form) {
    padding: 25px 26px 23px !important;
    border-radius: 16px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .account-form {
    margin-top: 10px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .account-form__logo {
    width: 186px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .account-form__logo img {
    max-height: 54px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .account-form__title {
    margin-bottom: 2px !important;
    font-size: 22px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .account-form__subtitle {
    margin-bottom: 13px !important;
    font-size: 10px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper {
    margin-bottom: 13px !important;
    border-radius: 7px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper .form--radio .form-check-label {
    min-height: 34px !important;
    gap: 7px !important;
    padding: 6px 9px !important;
    border-radius: 7px !important;
    font-size: 10px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper .form-check-label i {
    font-size: 16px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .auth-role-content:empty,
  .account-form-wrapper:has(.auth-login-form) .social-login-wrapper:empty {
    display: none !important;
  }

  .account-form-wrapper:has(.auth-login-form) .form-group {
    margin-bottom: 10px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .form--label {
    margin-bottom: 4px !important;
    font-size: 9px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .form--control.form-control {
    height: 36px !important;
    min-height: 36px !important;
    padding: 8px 11px !important;
    border-radius: 6px !important;
    font-size: 10px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .auth-input-wrap .form--control.form-control {
    padding-left: 35px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .auth-input-wrap > i {
    left: 11px !important;
    font-size: 15px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .password-show-hide {
    right: 0 !important;
    width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    font-size: 12px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .flex-between,
  .account-form-wrapper:has(.auth-login-form) .form--check label,
  .account-form-wrapper:has(.auth-login-form) .forgot-password {
    font-size: 8px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .form--check .form-check-input {
    width: 11px !important;
    height: 11px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .btn--base {
    min-height: 36px !important;
    border-radius: 5px !important;
    font-size: 11px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .btn--base i {
    margin-right: 5px !important;
    font-size: 15px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .auth-divider {
    gap: 10px !important;
    margin: -1px 0 8px !important;
    font-size: 8px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .account-form__text {
    font-size: 8px !important;
  }

  .account-inner__right:has(.auth-login-form) .account-trust-note {
    margin-top: 18px !important;
    font-size: 9px !important;
  }

  .account-inner__right:has(.auth-login-form) .account-trust-note i {
    font-size: 13px !important;
  }
}

/* Copy Animation */
.base-color {
  color: hsl(var(--base)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: hsl(var(--base));
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card__desc {
  font-size: 0.875rem;
}

.cookies-card__desc a {
  color: hsl(var(--white));
  text-decoration: underline;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 720px;
  padding: 24px;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: hsl(var(--white));
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookies-card-content {
  flex: 1;
}

.cookies-card__btn {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 120px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  border-radius: 50%;
  background-color: transparent;
  color: hsl(var(--white));
  font-size: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

/* FinConnect auth: Midnight Glass */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.account {
  min-height: 100vh;
  background: url('../../../images/hero-ng.jpg') center / cover no-repeat fixed;
}

.account-inner {
  min-height: 100vh;
  height: auto;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    linear-gradient(135deg, rgba(8, 25, 48, .94), rgba(13, 70, 82, .82)),
    url('../../../images/hero-ng.jpg') center / cover no-repeat;
  overflow-y: auto;
}

.account-inner__left {
  display: none;
}

.account-inner__right {
  width: min(100%, 560px);
  height: auto;
  overflow: visible;
}

.account-form-wrapper {
  width: 100%;
  min-height: 0;
  padding: 34px 38px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .93);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .3),
    0 24px 70px rgba(2, 14, 30, .34),
    0 8px 24px rgba(2, 14, 30, .16);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  animation: auth-card-enter 420ms cubic-bezier(.2, 0, 0, 1) both;
}

.account-form-wrapper > form,
.account-form {
  width: 100%;
}

.account-form {
  margin-top: 22px;
}

.account-form__logo {
  display: block;
  max-width: 190px;
}

.account-form__logo img {
  max-height: 58px;
  border-radius: 12px;
  outline: 1px solid rgba(0, 0, 0, .1);
  outline-offset: -1px;
}

.account-form > .text {
  margin-bottom: 6px;
  color: #617087;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.account-form__title {
  margin-bottom: 24px;
  color: #10233f;
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.account-form .radio-btn-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin: 0 0 24px;
  padding: 4px;
  border-radius: 16px;
  background: rgba(15, 35, 63, .07);
  box-shadow: inset 0 0 0 1px rgba(15, 35, 63, .06);
}

.account-form .radio-btn-wrapper .form--radio {
  min-width: 0;
}

.account-form .radio-btn-wrapper .form--radio .form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.account-form .radio-btn-wrapper .form--radio .form-check-label {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  color: #59697e;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition-property: color, background-color, box-shadow, transform;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(.2, 0, 0, 1);
}

.account-form .radio-btn-wrapper .form-check-input:checked + .form-check-label {
  color: #fff;
  background: #168f8a;
  box-shadow: 0 8px 18px rgba(22, 143, 138, .25);
}

.account-form .radio-btn-wrapper .form-check-input:focus-visible + .form-check-label {
  outline: 3px solid rgba(29, 171, 166, .22);
  outline-offset: 2px;
}

.account-form .radio-btn-wrapper .form-check-label:active,
.account-form .btn:active {
  transform: scale(.96);
}

.account-form .form-group {
  margin-bottom: 18px;
}

.account-form .form--label {
  margin-bottom: 7px;
  color: #243a58;
  font-size: 13px;
  font-weight: 700;
}

.account-form .form--control.form-control {
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid rgba(22, 43, 74, .16);
  border-radius: 12px;
  color: #10233f;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 1px 2px rgba(16, 35, 63, .04);
  transition-property: border-color, box-shadow, background-color;
  transition-duration: 180ms;
}

.account-form .form--control.form-control:hover {
  border-color: rgba(22, 43, 74, .28);
}

.account-form .form--control.form-control:focus {
  border-color: #1daba6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29, 171, 166, .13);
}

.account-form .password-show-hide {
  width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  color: #607086;
}

.account-form .form--check .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-color: rgba(22, 43, 74, .25);
}

.account-form .forgot-password,
.account-form__text a {
  color: #168f8a !important;
  font-weight: 700;
}

.account-form .btn--base {
  min-height: 50px;
  border-radius: 12px;
  font-weight: 750;
  letter-spacing: -.01em;
  box-shadow: 0 12px 24px rgba(22, 143, 138, .22);
  transition-property: background-color, border-color, box-shadow, transform;
  transition-duration: 160ms;
}

.account-form .btn--base:hover {
  box-shadow: 0 15px 28px rgba(22, 143, 138, .3);
}

.account-form__text {
  margin: 4px 0 0;
  color: #617087;
  text-wrap: pretty;
}

.account-form .social-login-wrapper {
  margin-bottom: 20px;
}

.account-form .social-login-list .social-login-btn {
  border-radius: 12px;
}

.auth-role-content[hidden] {
  display: none !important;
}

@keyframes auth-card-enter {
  from { opacity: 0; transform: translateY(14px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (max-width: 575px) {
  .account-inner {
    align-items: start;
    padding: 18px 12px;
    background-attachment: scroll;
  }

  .account-form-wrapper {
    padding: 26px 20px 24px;
    border-radius: 22px;
  }

  .account-form__logo {
    max-width: 165px;
  }

  .account-form__title {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .account-form-wrapper {
    animation: none;
  }
}

@media (max-width: 575px) {
  .cookies-card {
    flex-direction: column;
  }

  .cookies-card__btn {
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
  }
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

@media (max-width: 767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05),
    6px 4px 19px rgb(115 103 240 / 20%);
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: hsl(var(--border-color)) !important;
  padding: 10px 20px;
  border-radius: 4px !important;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 12px 14px !important;
  border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 0;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: 0.3s;
}

.select2-container--default .select2-selection--single {
  border-color: #ced4da !important;
  border-width: 2px !important;
  border-radius: 0.375rem !important;
  padding: 0.375rem 0.75rem !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 28px !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 10px !important;
}


.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default
  .select2-search--dropdown
  .select2-search__field:focus {
  border-color: hsl(var(--base)) !important;
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}
.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
}

/* PAYMENT CARD */
.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: hsl(var(--base));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: hsl(var(--black) / 0.1);
}

.payment-system-list {
  --thumb-width: 80px;
  --thumb-height: 32px;
  --border-color: hsl(var(--black) / 0.1);
  background-color: hsl(var(--white));
  border-radius: 10px;
  padding-block: 24px;
  padding-inline: 16px;
  height: 100%;
}

.payment-system-list.border-style {
  border-left: 1px solid hsl(var(--black) / 0.1);
  border-radius: 0;
}

@media (max-width: 991px) {
  .payment-system-list.border-style {
    border-left: 0;
    border-top: 1px solid hsl(var(--black) / 0.1);
  }
}

hr {
  border-top: 1px solid hsl(var(--black) / 0.1);
  opacity: 1;
}

.payment-system-list.is-scrollable {
  max-height: min(600px, 70vh);
  overflow-x: auto;
}

.modal .payment-system-list.is-scrollable {
  max-height: min(452px, 70vh);
  overflow-x: auto;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: hsl(var(--black) / 0.2);
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all linear 0.3s;
  margin-bottom: 16px;
  padding: 10px;
  border: 1px solid hsl(var(--black) / 0.1);
  border-radius: 8px;
  cursor: pointer;
}

.payment-item:has(.payment-item__radio:checked) {
  border-color: hsl(var(--base) / 0.2);
  background-color: hsl(var(--base) / 0.07);
}

.payment-item:has(.payment-item__radio:checked) .payment-item__name {
  color: hsl(var(--base));
}

.payment-item:has(.payment-item__radio:checked) .check-type-icon {
  border-color: hsl(var(--success));
}

.payment-item:has(.payment-item__radio:checked) .check-circle {
  display: block;
  color: hsl(var(--success));
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width));
  gap: 10px;
}

.payment-item__check {
  width: 10px;
  height: 10px;
  border: 1px solid hsl(var(--base));
  display: inline-block;
  border-radius: 100%;
}

.payment-item__name {
  transition: all 0.3s;
  text-align: end;
}

.payment-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.payment-item__thumb {
  padding: 3px 12px;
  border-radius: 8px;
  flex-shrink: 0;
  background-color: hsl(var(--black) / 0.1);
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}

.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 16px;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid hsl(var(--black) / 0.1);
  border-radius: 5px;
}

.deposit-info__input-group-text {
  align-self: center;
  padding-inline: 16px;
  border: 0;
  background: transparent;
}

.deposit-info__input-group:has(.form--control:disabled),
.deposit-info__input-group:has(.form--control:read-only) {
  background: hsl(var(--white) / 0.05);
}

.deposit-info__input-group:has(.form--control:disabled) .form--control,
.deposit-info__input-group:has(.form--control:read-only) .form--control {
  background: transparent;
  border: 0 !important;
}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 45px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;
  color: hsl(var(--black));
}

.note-text {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.payment-item__btn-text,
.payment-item__btn__icon {
  color: hsl(var(--success));
  font-size: 14px;
  font-weight: 600;
}

/* END GATEWAY */

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.select2-container--default .select2-selection--single {
  border-color: hsl(var(--black) / 0.1);
  border-width: 1px !important;
  border-radius: 4px !important;
  padding: 7px 16px !important;
  height: 100% !important;
}
.select2-container .select2-selection--single .select2-selection__rendered{
  padding-left: 0px !important;
}
.select2-container--default .select2-selection--single {
  border-color: hsl(var(--black) / 0.1) !important;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: hsl(var(--base)) !important;
  color: hsl(var(--white)) !important;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  margin-top: 10px !important;
}

.select2-container .selection {
  width: 100%;
  display: inline-block;
}

.select2-container--default .select2-selection--multiple,
.select2-selection--multiple {
  border-color: #cacaca73 !important;
  height: unset !important;
  min-height: 45px !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid hsl(var(--black) / 0.1);
}

.bg--primary {
  color: #fff !important;
}

.select2-container {
  width: 100% !important;
  min-width: 120px;
}

.select2-parent:has(.select2) {
  min-width: 200px;
}

span.select2-selection.select2-selection--single:focus-visible {
  border: 1px solid hsl(var(--base));
  outline: none !important;
}

.dropdown-list__item.langSel .text:hover {
  color: hsl(var(--white)) !important;
}

.daterangepicker td.active, .daterangepicker td.active:hover, .daterangepicker .ranges li.active {
  background-color: hsl(var(--base)) !important;
}

@media (min-width: 576px) {
  .account-inner__right:has(.auth-login-form) { width: min(100%, 294px) !important; transform: translateY(12px); }
  .account-form-wrapper:has(.auth-login-form) { padding: 21px 25px 20px !important; border-radius: 15px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form { margin-top: 7px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__logo { width: 160px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__logo img { max-height: 45px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__title { margin-bottom: 1px !important; font-size: 20px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__subtitle { margin-bottom: 12px !important; font-size: 8px !important; }
  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper { margin-bottom: 12px !important; border-radius: 6px !important; }
  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper .form--radio .form-check-label { min-height: 33px !important; gap: 6px !important; padding: 5px 8px !important; border-radius: 6px !important; font-size: 9px !important; }
  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper .form-check-label i { font-size: 14px !important; }
  .account-form-wrapper:has(.auth-login-form) .form-group { margin-bottom: 9px !important; }
  .account-form-wrapper:has(.auth-login-form) .form--label { margin-bottom: 3px !important; font-size: 8px !important; }
  .account-form-wrapper:has(.auth-login-form) .form--control.form-control { height: 28px !important; min-height: 28px !important; padding: 6px 9px !important; border-radius: 5px !important; font-size: 8px !important; }
  .account-form-wrapper:has(.auth-login-form) .auth-input-wrap .form--control.form-control { padding-left: 30px !important; }
  .account-form-wrapper:has(.auth-login-form) .auth-input-wrap > i { left: 9px !important; font-size: 13px !important; }
  .account-form-wrapper:has(.auth-login-form) .password-show-hide { right: 0 !important; width: 28px !important; height: 28px !important; min-height: 28px !important; font-size: 10px !important; }
  .account-form-wrapper:has(.auth-login-form) .flex-between,
  .account-form-wrapper:has(.auth-login-form) .form--check label,
  .account-form-wrapper:has(.auth-login-form) .forgot-password { font-size: 7px !important; white-space: nowrap; }
  .account-form-wrapper:has(.auth-login-form) .form--check .form-check-input { width: 10px !important; height: 10px !important; }
  .account-form-wrapper:has(.auth-login-form) .btn--base { min-height: 30px !important; border-radius: 4px !important; font-size: 9px !important; }
  .account-form-wrapper:has(.auth-login-form) .btn--base i { margin-right: 4px !important; font-size: 13px !important; }
  .account-form-wrapper:has(.auth-login-form) .auth-divider { gap: 8px !important; margin: -1px 0 7px !important; font-size: 7px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__text { font-size: 7px !important; }
  .account-inner__right:has(.auth-login-form) .account-trust-note { margin-top: 17px !important; font-size: 8px !important; }
  .account-inner__right:has(.auth-login-form) .account-trust-note i { font-size: 12px !important; }
}

/* Midnight Glass auth fidelity pass */
.account {
  min-height: 100vh;
  background: #071a2f url('/assets/images/bg-fin.jpg') center center / cover no-repeat fixed !important;
}

.account-inner {
  min-height: 100vh !important;
  height: auto !important;
  display: grid !important;
  place-items: center !important;
  padding: 42px 20px 34px !important;
  background:
    linear-gradient(90deg, rgba(5, 22, 42, .58), rgba(5, 27, 48, .35)),
    linear-gradient(180deg, rgba(3, 18, 36, .12), rgba(3, 18, 36, .58)),
    url('/assets/images/bg-fin.jpg') center center / cover no-repeat fixed !important;
}

.account-inner__left {
  display: none !important;
}

.account-inner__right {
  width: min(100%, 566px) !important;
  height: auto !important;
  overflow: visible !important;
}

.account-form-wrapper {
  width: 100% !important;
  min-height: 0 !important;
  padding: 38px 48px 36px !important;
  border-radius: 26px !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(244, 249, 252, .72)) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .52),
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 30px 80px rgba(0, 10, 25, .46),
    0 10px 30px rgba(0, 14, 30, .22) !important;
  backdrop-filter: blur(24px) saturate(135%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(135%) !important;
}

.account-form-wrapper > form,
.account-form {
  width: 100% !important;
}

.account-form {
  margin-top: 20px !important;
}

.account-form__logo {
  width: 250px !important;
  max-width: 72% !important;
  margin: 0 auto !important;
}

.account-form__logo img {
  width: 100% !important;
  max-height: 74px !important;
  object-fit: cover !important;
  object-position: center 38% !important;
  border-radius: 0 !important;
  outline: 0 !important;
  filter: drop-shadow(0 2px 8px rgba(9, 42, 69, .08));
}

.account-form__title {
  margin: 0 0 6px !important;
  color: #102b4c !important;
  font-size: 30px !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
  letter-spacing: -.035em !important;
  text-align: center !important;
}

.account-form__subtitle {
  margin: 0 0 24px;
  color: #64748a;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  text-wrap: pretty;
}

.account-form .radio-btn-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, .62) !important;
  box-shadow:
    0 0 0 1px rgba(18, 45, 76, .08),
    0 8px 22px rgba(13, 42, 72, .07) !important;
  overflow: hidden;
}

.account-form .radio-btn-wrapper .form--radio {
  min-width: 0 !important;
}

.account-form .radio-btn-wrapper .form--radio .form-check-label {
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  padding: 10px 14px !important;
  border: 0 !important;
  border-radius: 9px !important;
  color: #526174 !important;
  background: transparent !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.account-form .radio-btn-wrapper .form-check-label i {
  font-size: 22px;
}

.account-form .radio-btn-wrapper .form-check-input:checked + .form-check-label {
  color: #0aa7a3 !important;
  background: rgba(239, 255, 255, .92) !important;
  box-shadow:
    inset 0 0 0 1.5px #12b6b2,
    0 7px 18px rgba(12, 169, 165, .13) !important;
}

.account-form .form-group {
  margin-bottom: 18px !important;
}

.account-form .form--label {
  margin-bottom: 7px !important;
  color: #213b59 !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
}

.auth-input-wrap {
  position: relative;
}

.auth-input-wrap > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 14px;
  color: #8b99aa;
  font-size: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.account-form .form--control.form-control {
  width: 100% !important;
  height: 50px !important;
  min-height: 50px !important;
  padding: 12px 15px !important;
  border: 1px solid rgba(22, 48, 79, .08) !important;
  border-radius: 9px !important;
  color: #142d4c !important;
  background: rgba(255, 255, 255, .78) !important;
  box-shadow:
    inset 0 1px 1px rgba(16, 42, 70, .025),
    0 5px 14px rgba(10, 36, 65, .035) !important;
  font-size: 13px !important;
}

.auth-input-wrap .form--control.form-control {
  padding-left: 44px !important;
}

.account-form .form--control.form-control::placeholder {
  color: #9aa6b5 !important;
}

.account-form .form--control.form-control:hover {
  border-color: rgba(19, 166, 162, .34) !important;
}

.account-form .form--control.form-control:focus {
  border-color: #13aaa6 !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 0 0 4px rgba(18, 182, 178, .12) !important;
}

.account-form .password-show-hide {
  right: 6px !important;
  width: 42px !important;
  height: 42px !important;
  color: #8795a7 !important;
}

.account-form .flex-between,
.account-form .form--check label,
.account-form .forgot-password {
  font-size: 12px !important;
}

.account-form .form--check .form-check-input {
  width: 16px !important;
  height: 16px !important;
  border-radius: 3px !important;
}

.account-form .btn--base {
  min-height: 52px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #08aaa6, #08b8b4) !important;
  box-shadow: 0 12px 26px rgba(6, 157, 153, .24) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.account-form .btn--base i {
  margin-right: 7px;
  font-size: 20px;
  vertical-align: -2px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 13px;
  color: #8190a2;
  font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: rgba(24, 51, 81, .14);
}

.account-form__text {
  margin: 0 !important;
  color: #728096 !important;
  font-size: 12px !important;
}

.account-trust-note {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 12, 25, .45);
}

.account-trust-note i {
  margin-right: 7px;
  font-size: 19px;
  vertical-align: -2px;
}

.account-trust-note strong {
  color: #16c4bf;
  font-weight: 700;
}

@media (max-width: 575px) {
  .account-inner {
    padding: 18px 12px 24px !important;
    background-attachment: scroll !important;
  }

  .account-form-wrapper {
    padding: 28px 22px 26px !important;
    border-radius: 22px !important;
  }

  .account-form__title {
    font-size: 27px !important;
  }

  .account-form__logo {
    width: 220px !important;
  }
}

/* Accounting marketplace visual foundation */
:root {
  --market-ink: #102033;
  --market-muted: #5d6b7a;
  --market-line: #dce4ec;
  --market-surface: #ffffff;
  --market-soft: #f5f8fb;
  --market-accent: #0f6b5f;
  --market-gold: #b68a35;
}

body {
  color: var(--market-ink);
  background-color: var(--market-soft);
}

.banner-section {
  background: linear-gradient(135deg, #f8fbfd 0%, #eef5f4 100%);
}

.banner-content__title,
.section-heading__title,
.dashboard-widget__number {
  color: var(--market-ink);
  letter-spacing: 0;
}

.banner-content__desc,
.freelancer-item__designation,
.dashboard-widget__text {
  color: var(--market-muted);
}

.search-container,
.filter-wrapper,
.dashboard-widget,
.job-post-content,
.chart-box,
.dashboard-item,
.table-wrapper,
.freelancer-item {
  border: 1px solid var(--market-line);
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.06);
}

.freelancer-item.expert-card {
  border-radius: 8px;
  background: var(--market-surface);
}

.freelancer-item.expert-card .freelancer-item__thumb {
  border-color: rgba(15, 107, 95, 0.14);
}

.btn--base,
.badge--base {
  background-color: var(--market-accent) !important;
  border-color: var(--market-accent) !important;
}

.text--base,
.base-color,
.review-rating-list__item {
  color: var(--market-accent) !important;
}

.skill-list__link,
.freelancer-item__status {
  border-color: rgba(15, 107, 95, 0.18);
  background: rgba(15, 107, 95, 0.07);
  color: var(--market-accent);
}

.sidebar-menu,
.sidebar-menu__inner {
  background: #0f1f2f;
}

.sidebar-menu-list__link,
.sidebar-submenu-list__link {
  color: rgba(255, 255, 255, 0.78);
}

.sidebar-menu-list__item.active > .sidebar-menu-list__link,
.sidebar-menu-list__link:hover,
.sidebar-submenu-list__link:hover {
  color: #ffffff;
  background: rgba(15, 107, 95, 0.22);
}

/* FinConnect responsive safety net */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

@media (max-width: 767px) {
  .container,
  .container-fluid {
    max-width: 100%;
  }

  .section-heading,
  .banner-content,
  .contact-section__bottom,
  .job-post-content,
  .custom--card,
  .table-wrapper {
    max-width: 100%;
  }
}

@media (min-width: 576px) {
  .account-inner__right:has(.auth-login-form) { width: min(100%, 390px) !important; }
  .account-form-wrapper:has(.auth-login-form) { padding: 25px 26px 23px !important; border-radius: 16px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form { margin-top: 10px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__logo { width: 186px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__logo img { max-height: 54px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__title { margin-bottom: 2px !important; font-size: 22px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__subtitle { margin-bottom: 13px !important; font-size: 10px !important; }
  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper { margin-bottom: 13px !important; border-radius: 7px !important; }
  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper .form--radio .form-check-label { min-height: 34px !important; gap: 7px !important; padding: 6px 9px !important; border-radius: 7px !important; font-size: 10px !important; }
  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper .form-check-label i { font-size: 16px !important; }
  .account-form-wrapper:has(.auth-login-form) .form-group { margin-bottom: 10px !important; }
  .account-form-wrapper:has(.auth-login-form) .form--label { margin-bottom: 4px !important; font-size: 9px !important; }
  .account-form-wrapper:has(.auth-login-form) .form--control.form-control { height: 36px !important; min-height: 36px !important; padding: 8px 11px !important; border-radius: 6px !important; font-size: 10px !important; }
  .account-form-wrapper:has(.auth-login-form) .auth-input-wrap .form--control.form-control { padding-left: 35px !important; }
  .account-form-wrapper:has(.auth-login-form) .auth-input-wrap > i { left: 11px !important; font-size: 15px !important; }
  .account-form-wrapper:has(.auth-login-form) .password-show-hide { right: 0 !important; width: 34px !important; height: 34px !important; min-height: 34px !important; font-size: 12px !important; }
  .account-form-wrapper:has(.auth-login-form) .flex-between,
  .account-form-wrapper:has(.auth-login-form) .form--check label,
  .account-form-wrapper:has(.auth-login-form) .forgot-password { font-size: 8px !important; }
  .account-form-wrapper:has(.auth-login-form) .form--check .form-check-input { width: 11px !important; height: 11px !important; }
  .account-form-wrapper:has(.auth-login-form) .btn--base { min-height: 36px !important; border-radius: 5px !important; font-size: 11px !important; }
  .account-form-wrapper:has(.auth-login-form) .btn--base i { margin-right: 5px !important; font-size: 15px !important; }
  .account-form-wrapper:has(.auth-login-form) .auth-divider { gap: 10px !important; margin: -1px 0 8px !important; font-size: 8px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__text { font-size: 8px !important; }
  .account-inner__right:has(.auth-login-form) .account-trust-note { margin-top: 18px !important; font-size: 9px !important; }
  .account-inner__right:has(.auth-login-form) .account-trust-note i { font-size: 13px !important; }
}

/* Reference viewport sizing for the selected Midnight Glass login */
@media (min-width: 576px) {
  .account-inner__right:has(.auth-login-form) { width: min(100%, 294px) !important; transform: translateY(2px); }
  .account-form-wrapper:has(.auth-login-form) { padding: 21px 25px 20px !important; border-radius: 15px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form { margin-top: 7px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__logo { width: 160px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__logo img { max-height: 45px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__title { margin-bottom: 1px !important; font-size: 20px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__subtitle { margin-bottom: 12px !important; font-size: 8px !important; }
  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper { margin-bottom: 12px !important; border-radius: 6px !important; }
  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper .form--radio .form-check-label { min-height: 33px !important; gap: 6px !important; padding: 5px 8px !important; border-radius: 6px !important; font-size: 9px !important; }
  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper .form-check-label i { font-size: 14px !important; }
  .account-form-wrapper:has(.auth-login-form) .form-group { margin-bottom: 9px !important; }
  .account-form-wrapper:has(.auth-login-form) .form--label { margin-bottom: 3px !important; font-size: 8px !important; }
  .account-form-wrapper:has(.auth-login-form) .form--control.form-control { height: 28px !important; min-height: 28px !important; padding: 6px 9px !important; border-radius: 5px !important; font-size: 8px !important; }
  .account-form-wrapper:has(.auth-login-form) .auth-input-wrap .form--control.form-control { padding-left: 30px !important; }
  .account-form-wrapper:has(.auth-login-form) .auth-input-wrap > i { left: 9px !important; font-size: 13px !important; }
  .account-form-wrapper:has(.auth-login-form) .password-show-hide { right: 0 !important; width: 28px !important; height: 28px !important; min-height: 28px !important; font-size: 10px !important; }
  .account-form-wrapper:has(.auth-login-form) .form--check label,
  .account-form-wrapper:has(.auth-login-form) .forgot-password { font-size: 7px !important; white-space: nowrap; }
  .account-form-wrapper:has(.auth-login-form) .form--check .form-check-input { width: 10px !important; height: 10px !important; }
  .account-form-wrapper:has(.auth-login-form) .btn--base { min-height: 30px !important; border-radius: 4px !important; font-size: 9px !important; }
  .account-form-wrapper:has(.auth-login-form) .btn--base i { margin-right: 4px !important; font-size: 13px !important; }
  .account-form-wrapper:has(.auth-login-form) .auth-divider { gap: 8px !important; margin: -1px 0 7px !important; font-size: 7px !important; }
  .account-form-wrapper:has(.auth-login-form) .account-form__text { font-size: 7px !important; }
  .account-inner__right:has(.auth-login-form) .account-trust-note { margin-top: 17px !important; font-size: 8px !important; }
  .account-inner__right:has(.auth-login-form) .account-trust-note i { font-size: 12px !important; }
}

/* Auth modal size rebalance */
@media (min-width: 576px) {
  .account-inner__right:has(.auth-login-form) {
    width: min(100%, 404px) !important;
    transform: none;
  }

  .account-form-wrapper:has(.auth-login-form) {
    padding: 28px 34px 27px !important;
    border-radius: 20px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .account-form {
    margin-top: 11px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .account-form__logo {
    width: 192px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .account-form__logo img {
    max-height: 55px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .account-form__title {
    margin-bottom: 3px !important;
    font-size: 27px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .account-form__subtitle {
    margin-bottom: 16px !important;
    font-size: 11px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper {
    margin-bottom: 16px !important;
    border-radius: 9px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper .form--radio .form-check-label {
    min-height: 42px !important;
    gap: 8px !important;
    padding: 8px 11px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .radio-btn-wrapper .form-check-label i {
    font-size: 18px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .form-group {
    margin-bottom: 13px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .form--label {
    margin-bottom: 5px !important;
    font-size: 12px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .form--control.form-control {
    height: 42px !important;
    min-height: 42px !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .auth-input-wrap .form--control.form-control {
    padding-left: 39px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .auth-input-wrap > i {
    left: 12px !important;
    font-size: 17px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .password-show-hide {
    width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    font-size: 13px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .form--check label,
  .account-form-wrapper:has(.auth-login-form) .forgot-password {
    font-size: 11px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .form--check .form-check-input {
    width: 13px !important;
    height: 13px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .btn--base {
    min-height: 42px !important;
    border-radius: 7px !important;
    font-size: 13px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .btn--base i {
    font-size: 17px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .auth-divider {
    margin: 0 0 10px !important;
    font-size: 11px !important;
  }

  .account-form-wrapper:has(.auth-login-form) .account-form__text {
    font-size: 11px !important;
  }

  .account-inner__right:has(.auth-login-form) .account-trust-note {
    margin-top: 20px !important;
    font-size: 10px !important;
  }

  .account-inner__right:has(.auth-login-form) .account-trust-note i {
    font-size: 14px !important;
  }

  .account-inner__right:has(.auth-register-form) {
    width: min(100%, 480px) !important;
  }

  .account-form-wrapper:has(.auth-register-form) {
    padding: 28px 34px 26px !important;
    border-radius: 22px !important;
  }

  .account-form-wrapper:has(.auth-register-form) .account-form {
    margin-top: 12px !important;
  }

  .account-form-wrapper:has(.auth-register-form) .account-form__logo {
    width: 205px !important;
  }

  .account-form-wrapper:has(.auth-register-form) .account-form__title {
    font-size: 27px !important;
  }

  .account-form-wrapper:has(.auth-register-form) .account-form__subtitle {
    margin-bottom: 18px !important;
    font-size: 11px !important;
  }

  .account-form-wrapper:has(.auth-register-form) .radio-btn-wrapper {
    margin-bottom: 18px !important;
  }

  .account-form-wrapper:has(.auth-register-form) .radio-btn-wrapper .form--radio .form-check-label {
    min-height: 42px !important;
    font-size: 12px !important;
  }

  .account-form-wrapper:has(.auth-register-form) .form-group {
    margin-bottom: 13px !important;
  }

  .account-form-wrapper:has(.auth-register-form) .form--control.form-control {
    height: 42px !important;
    min-height: 42px !important;
    font-size: 12px !important;
  }

  .account-form-wrapper:has(.auth-register-form) .btn--base {
    min-height: 44px !important;
    font-size: 13px !important;
  }
}

/* Client profile completion, aligned with Midnight Glass auth */
.client-profile-shell {
  width: min(100%, 620px) !important;
}

.client-profile-card {
  padding: 32px 40px 30px !important;
  border-radius: 24px !important;
}

.client-profile-card .account-form {
  margin-top: 14px !important;
}

.client-profile-card .account-form__logo {
  width: 210px !important;
}

.client-profile-card .account-form__title {
  margin-bottom: 4px !important;
  font-size: 29px !important;
}

.client-profile-card .account-form__subtitle {
  max-width: 430px;
  margin: 0 auto 17px !important;
  font-size: 12px !important;
}

.client-profile-card .form-group {
  margin-bottom: 0 !important;
}

.client-profile-card .form--label {
  margin-bottom: 6px !important;
  font-size: 11px !important;
}

.client-profile-card .form--control.form-control {
  height: 44px !important;
  min-height: 44px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
}

.client-profile-card .form--control[readonly] {
  color: #56677b !important;
  background: rgba(238, 243, 247, .84) !important;
}

.client-mobile-group {
  flex-wrap: nowrap !important;
}

.client-mobile-group .mobile-code {
  min-width: 55px;
  justify-content: center;
  border: 1px solid rgba(22, 48, 79, .08);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  color: #506177;
  background: rgba(238, 243, 247, .9);
  font-size: 12px;
  font-weight: 700;
}

.client-mobile-group .form--control {
  border-radius: 0 8px 8px 0 !important;
}

.client-profile-card .text--danger {
  display: block;
  margin-top: 4px;
  font-size: 10px;
}

.client-profile-card .btn--base {
  min-height: 46px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
}

.client-profile-card .btn--base i {
  margin-right: 6px;
  font-size: 18px;
  vertical-align: -2px;
}

@media (max-width: 575px) {
  .client-profile-card {
    padding: 27px 21px 25px !important;
  }

  .client-profile-card .account-form__title {
    font-size: 25px !important;
  }

}
