:root {
  --blue-dark: #0B7EB2;
  --text: #333;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  margin: 0;
  background-color: #f5fafc;
}

/* Header */
.site-header {
  background: var(--bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 11px;
}
.div-top-policy .head-top h1 {
    text-align: center;
    font-size: 30px;
    border-bottom: 3px solid #0b7eb2;
    padding-bottom: 9px;
    margin-bottom: 26px;
    display: inline-block;
    font-weight: 600;
    color: #000;
}
.div-top-policy .head-top {
  text-align: center;
}


.div-top-policy  p{
  font-size: 15px;
    line-height: 24px;
    color: #333;
    font-weight: 400;
    text-align: justify;
}
.div-top-policy {
    background: #fff;
    padding: 48px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: 10px;
    margin-top: 70px;margin-bottom: 70px;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
}

.logo img {
  width: 156px;
}

.logo i {
  width: 12px;
  height: 12px;
  border: 3px solid var(--blue-dark);
  border-left: none;
  border-bottom: none;
  margin-left: 4px;
  transform: rotate(45deg);
}

/* Nav */
.nav {
  display: flex;
  gap: 41px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 17px;
}

.nav a:hover {
  color: var(--blue-dark);
}

/* Buttons */
.actions {
  display: flex;
  gap: 12px;
}

.btn-outline {
  padding: 7px 21px;
  border: 2px solid var(--blue-dark);
  color: var(--blue-dark);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.btn-primary {
  padding: 11px 24px;
  background: var(--blue-dark);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* SECTION BACKGROUND */
.login-section {
  padding: 68px 0;
  /* background: linear-gradient(180deg, #f8fbfd 0%, #e8f4f9 100%); */
}

/* WHITE MAIN BOX */
.login-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 14px 31px rgb(10 126 177 / 15%);
  padding: 27px;
  max-width: 1250px;
  margin: auto;
}

/* RIGHT CARD (COMMON) */
.login-card {
  background: #e4f7ff;
  border-radius: 17px;
  padding: 40px 46px;
  /* max-width: 380px; */
  margin-left: 75px;
  text-align: center;
}

/* ICON CIRCLE */
.login-icon {
  width: 70px;
  height: 70px;
  background: var(--blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.login-icon img {
  width: 50px;
  height: 50px;
}

/* HEADING */
.login-card h3 {
  font-size: 35px;
  font-weight: 700;
  color: #000;
}

/* DESCRIPTION TEXT */
.login-card p {
  font-size: 19px;
  color: #303030;
  font-weight: 500;
  margin-bottom: 30px;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  background-color: var(--blue-dark);
  color: white;
}

.login-card form {
  text-align: left;
}

/* INPUT FIELDS */
.login-card .form-control {
  height: 50px;
  margin-bottom: 4px;
  border-radius: 8px;
  border: none;
  box-shadow: none;
  background: transparent;
  border: 2px solid #0b7eb2;
}

/* FORGOT LINK WRAPPER */
.forgot-links {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  margin-top: -8px;
}

.forgot {
  font-size: 14px;
  font-weight: 600;
  color: #021264;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0px;
  margin-top: 10px;
}

.forgot-password {
  text-decoration: underline;
  text-decoration-color: #021264;
}

/* LOGIN BUTTON */
.login-btn {
  width: 100%;
  height: 48px;
  background: var(--blue-dark);
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  margin-top: 20px;
  transition: 0.3s ease;
}

.login-btn:hover {
  background-color: var(--blue-dark);
  color: #fff;
}

p.login-p {
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 31px;
}

.alert.alert-red {
  background: #ffe6e6;
  padding: 6px;
  border: 1px solid #da0000;
  color: #da0000;
  font-size: 15px;
  letter-spacing: .3px;
}

.alert.alert-success {
  background: #ecffed;
  padding: 6px;
  border: 1px solid #007e34;
  color: #007e34;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .3px;
}

.input-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
  margin-top: 28px;
  margin-right: 295px;
  color: #1e1e1e;
  width: 100%;
  display: block;
}

/* Forgot Links */
.forgot-links {
  display: flex;
  justify-content: flex-end;
}

/* Bottom Text */
.login-card p.bottom-text {
  margin-top: 16px;
  color: black;
  text-align: center;
  font-size: 17px;
}

.forgot-also .login-btn {
  margin-top: 31px;
}

.bottom-text a {
  color: var(--blue-dark);
  font-weight: 600;
  text-decoration: underline;
  font-size: 19px;
}

/* ===== LEFT IMAGE ===== */
.left-box {
  text-align: center;
}

.left-box img {
  max-width: 100%;
}

.submit-btn {
  width: 100%;
  height: 46px;
  background: var(--blue-dark);
  color: #ffffff;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  margin-top: 10px;
  box-shadow: 0px 8px 18px rgba(10, 126, 177, 0.35);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #0B7EB2;
  box-shadow: 0px 10px 22px rgba(10, 126, 177, 0.45);
  transform: translateY(-1px);
}

.forgot-password img {
  width: 22px;
  height: auto;
}

/* HEADING SECTION */
.headings {
  margin: 80px 0 35px;
}

.headings h3 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 1);
}

.headings p {
  font-size: 16px;
  color: rgba(48, 48, 48, 1);
  line-height: 1.6;
}

.custom-box {
  width: 80%;
  height: 90%;
  margin: 0 auto 60px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(10, 126, 177, 0.25);
  overflow: hidden;
}

/* LEFT TEXT */
.welcome-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.welcome-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 500;
}

/* Body Container */
.form-wrapper-payment {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 0;
  height: 100%;
  margin-top: 112px;
}

/* Body Container - Full bleed from left */
.payment-body {
  padding: 10px 0 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.payment-body h3 {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin: 0 0 10px 0;
  width: 100%;
  text-align: left;
}

.payment-subtext {
  font-size: 19px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0 0 22px 0;
  width: 100%;
  text-align: left;
}

.payment-note {
  font-size: 15px;
  line-height: 1.7;
  color: #B20101;
  font-weight: 500;
  background: #ffffff;
  width: 100%;
  margin: 0;
  text-align: left;
  margin-bottom: 130px;
}

.payment-note strong {
  font-weight: 700;
  color: #B20101;
  font-size: 21px;
}

/* ===== MAIN BOX ===== */
/* ===== MAIN BOX ===== */
.welcome-wrap {
  width: 100%;
  display: flex;
  justify-content: center;

  box-sizing: border-box;
}

.welcome-main {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  box-shadow: rgb(4 122 176 / 44%) 0px 7px 29px 0px;
}

.heading {
  margin: 80px 0 35px;
}

.heading h3 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 1);
}

.heading p {
  font-size: 18px;
  color: rgba(71, 71, 71, 1);
  line-height: 1.6;
  width: 24%;
  margin: auto;
  margin-bottom: 0;
  margin-top: 11px;
}

/* ===== LEFT BLUE PANEL ===== */
.welcome-blue {
  background: linear-gradient(180deg, #0B7EB2 0%, #0B7EB2 100%);
  color: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  min-height: 550px;
  flex: 1;
  width: 50%;
}

/* ===== AVATAR ===== */
.welcome-avatar-wrap {
  margin-bottom: 25px;
}

.welcome-avatar-outer {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -15px;
}

.welcome-avatar-inner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-avatar-inner img {
  width: 36px;
}

.welcome-title-text {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 9px;
  margin-top: 10px;
}

.welcome-subtext {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 400;
  max-width: 360px;
  text-align: center;
  width: 77%;
}

/* ===== LEFT BUTTONS ===== */
.welcome-btn-advisor,
.welcome-btn-client {
  width: 78%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border-radius: 35px;
  font-weight: 600;
  cursor: pointer;
  font-size: 19px;
  box-sizing: border-box;
}

/* advisor */
.welcome-btn-advisor {
  background: #fff;
  color: #0B7EB2;
  border: 2px solid #fff;
}

/* client */
.welcome-btn-client {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.welcome-btn-advisor:hover {
  color: #fff;
  background: #0B7EB2;
}

/* ===== RIGHT WHITE PANEL ===== */
.welcome-white {
  padding: 60px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 50%;
}

.advisor-icon-wrap {
  width: 87px;
  height: 87px;
  border-radius: 50%;
  background: #0B7EB2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-bottom: 25px;
  box-shadow: rgb(3 124 177 / 37%) 0px 4px 12px;
}

.advisor-icon-wrap img {
  width: 39px;
}

/* ===== RIGHT TEXT ===== */

.advisor-title-text {
  font-size: 28px;
  font-weight: 800;
  margin-top: 0;
  font-family: "Roboto", sans-serif;
}

.advisor-subtext {
  max-width: 85%;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 8px;
}

/* ===== AUTH BUTTONS ===== */
.auth-btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 360px;
}

.auth-btn-signup,
.auth-btn-signin {
  background: #0B7EB2;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  font-size: 18px;
}

/* =====================
   HEADER
===================== */
.pay-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.pay-icon {
  width: 50px;
  height: 50px;
  background: var(--blue-dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10px;
}

.pay-icon img {
  width: 49px;
  height: 49px;
  object-fit: contain;
}

.pay-header h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
  margin-top: -10px;
}

/* =====================
   FORM FIELDS
===================== */
.pay-field {
  margin-bottom: 16px;
  text-align: left;
}

.pay-field label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.pay-field input {
  width: 100%;
  height: 50px;
  border: 2px solid #d6e8f5;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 14px;
  color:rgba(99, 99, 99, 0.66) ;
}

.pay-field input::placeholder {
  color: rgba(99, 99, 99, 0.66);
}

.pay-field input:focus {
  outline: none;
  /* border-color: var(--blue-dark); */
}

/* =====================
   ACCEPTED CARDS
===================== */
.pay-accept {
  margin-bottom: 0;
  text-align: left;
  margin-bottom: 20px;
}

.pay-cards {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pay-cards img {
  height: auto;
  max-height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: -20px;
}

.pays-image {
  max-height: 20px !important;
  width: auto;
  object-fit: contain;
}

/* =====================
   ROW (EXPIRY + CVV)
===================== */
.pay-row {
  display: flex;
  gap: 16px;
}

.pay-row .pay-field {
  width: 100%;
}
/* =====================
   CHECKBOX WRAPPER
===================== */
.pay-check-wrapper {
  margin-bottom: 16px;
}

/* =====================
   CHECKBOX LABEL
===================== */
.pay-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  text-align: left;
  cursor: default; /* label click disable feel */
}

/* hide native checkbox */
.pay-check input {
  display: none;
}

/* =====================
   ONLY TEXT NON-CLICKABLE
===================== */
.pay-text {
  pointer-events: none; /* text click disable */
}

/* =====================
   CUSTOM CHECKBOX BOX
===================== */
.pay-box {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(10, 126, 177, 1);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  pointer-events: auto; /* ONLY checkbox clickable */
}

/* =====================
   CHECK ICON
===================== */
.pay-box::after {
  content: "";
  position: absolute;
     left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}
span.pay-text {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
    color: #000;
    font-weight: 600;
}
/* =====================
   CHECKED STATE
===================== */
.pay-check input:checked + .pay-box {
  background: var(--blue-dark);
}
.div-new-ads {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pay-check input:checked + .pay-box::after {
  opacity: 1;
}

/* =====================
   LINK CLICKABLE
===================== */
.pay-link {
  pointer-events: auto; /* link clickable */
  text-decoration: underline;
  color: rgba(0, 0, 0, 1);
  cursor: pointer;
}

/* =====================
   ERROR
===================== */
.checkbox-error {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #d32f2f;
}
/* =====================
   BUTTONS
===================== */
.pay-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* ================= FORM ================= */
.form-wrapper {
  width: 100%;
  margin: 80px auto;
  text-align: center;
}

.form-wrapper h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 1);
}

.form-wrapper h2 span {
  color: var(--blue-dark);
}

.form-wrapper p {
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(71, 71, 71, 1);
  font-weight: 400;
}

/* ================= CARD ================= */
.form-card {
  width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(10, 126, 177, 0.18);
  border-top: 7px solid #0B7EB2;
}

.form-pay-onys .form-card {
  width: 45%;
}

/* ================= SECTION TITLE ================= */
.section-title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.title-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.title-left span {
  font-size: 28px;
  font-weight: 700;
  color: rgba(0, 0, 0, 1);
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.title-left img {
  width: 47px;
  height: 47px;
  padding: 4px;
  border-radius: 5px;
  background: var(--blue-dark);
  object-fit: cover;
  box-sizing: border-box;


}

.title-left h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

.title-line {
  flex: 1;
  height: 2px;
  background: var(--border);
}

/* ================= FORM GRID ================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.form-group.full {
  grid-column: 1/-1;
}

label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 8px;
  text-align: left;
  margin-bottom: 5px;
}

/* ================= INPUTS & SELECT ================= */
input,
select {
  height: 50px;
  border: 2px solid #d1e8f2;
  border-radius: 10px;
  padding: 0 44px 0 16px;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  color: rgba(99, 99, 99, 0.66);

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  outline: none;
  box-shadow: none;
}

/* CUSTOM ARROW (SELECT) */
select,
.select2-dropdown {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

input::placeholder {
  color: rgba(99, 99, 99, 0.66);
}

/* FOCUS */
input:focus,
select:focus {
  border-color: #d1e8f2;
}

/* ================= PHONE FIELD ================= */
.phone-field {
  display: flex;
  gap: 16px;
}

.phone-field select {
  flex: 0.25;
}

.phone-field input {
  flex: 1;
}

/* ================= DIVIDER ================= */
.contact-divider {
  width: 100%;
  height: 2px;
  background: #d7eaf6;
  margin: 16px 0 28px;
  margin-top: -20px;
}

/* ================= FOOTER ================= */
.form-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

/* ================= BUTTON ================= */
.next-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(4, 130, 185, 1);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 6px 70px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 15px;
}

/* BUTTON WRAPPER */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 0 2px;
}

/* COMMON BUTTON STYLE */
.btn-prev,
.btn-next {
  min-width: 160px;
  height: 48px;
  background: #0B7EB2;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 20px;
}

.btn-confirm {
  min-width: 220px;
  height: 48px;
  background: #0B7EB2;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 20px;
}

.div-coming-soon img {
  width: 75%;
  margin: auto;
}

.div-coming-soon {
  text-align: center;
  padding: 0;
}

/* =====================
   ROW (EXPIRY + CVV)
===================== */
.pay-row {
  display: flex;
  gap: 16px;
}

.pay-row .pay-field {
  width: 100%;
}

/* =====================
   CHECKBOX
===================== */
.pay-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
    margin-bottom: 0;
}

.pay-check input {
  display: none;
}

.pay-box {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(10, 126, 177, 1);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-right: 9px;
}

.pay-link {
  text-decoration: underline;
  color: rgba(0, 0, 0, 1);

  cursor: pointer;
}

/* =====================
   BUTTONS
===================== */
.pay-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
}

.forgot-also .login-card p {
  font-size: 18px;
  color: #303030;
  font-weight: 500;
  margin-bottom: 39px;
}


/* ================================
   SELECT2 MULTI SELECT – CUSTOM UI
   Border: #d1e8f2
   Primary: #0B7EB2
================================ */

/* ================================
   MAIN SELECT BOX
================================ */
.select2-container--default .select2-selection--multiple {
  height: 50px;
  border: 2px solid #d1e8f2 !important;
  border-radius: 10px !important;
  padding: 0 44px 0 16px !important;
  font-size: 16px !important;
  font-weight: 500;
  background: #fff;
  color: rgba(99, 99, 99, 0.66);
  appearance: none;
  outline: none !important;
  box-shadow: none !important;
  position: relative;

  display: flex !important;
  align-items: center !important;
  overflow: hidden;
}

/* Focus */
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #0B7EB2 !important;
  box-shadow: 0 0 0 2px rgba(11, 126, 178, 0.15) !important;
}

/* ================================
   CHEVRON DOWN ICON (SVG)
================================ */
.select2-container--default .select2-selection--multiple::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

/* ================================
   RENDERED AREA – ONE LINE
================================ */
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  gap: 6px;
  scrollbar-width: none;
  /* Firefox */
}

/* Hide scrollbar (Chrome) */
.select2-container--default .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar {
  display: none;
}

/* ================================
   PLACEHOLDER / SEARCH FIELD
================================ */
.select2-container--default .select2-selection--multiple .select2-search--inline {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 0 0 auto;
}

.select2-container--default .select2-selection--multiple .select2-search__field {
  margin: 0 !important;
  height: 100% !important;
  line-height: 48px !important;
  padding: 0 !important;
  font-size: 14px;
  font-weight: 500;
  color: #989898;
  white-space: nowrap;
}

/* ================================
   SELECTED SERVICE PILLS
================================ */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #0B7EB2 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex !important;
  align-items: center !important;
  height: 28px;
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Pill text */
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  color: #ffffff !important;
}

/* Remove (×) icon */
.select2-container--default .select2-selection__choice__remove {
  color: #ffffff !important;
  margin-right: 6px;
  font-weight: bold;
}

.select2-container--default .select2-selection__choice__remove:hover {
  color: #ffdede !important;
}

/* ================================
   DROPDOWN STYLES
================================ */
.select2-dropdown {
  border-radius: 10px;
  border: 1px solid #d1e8f2;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  background: #0b7eb2;
  color: #fff;
}

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

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  top: 4px !important;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  margin-bottom: 0;
  margin-top: -5px;
}

.select2-container--default .select2-results__option {
  padding: 10px 14px;
  font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #0B7EB2;
  color: #fff;
}

.select2-container--default .select2-results__option--selected {
  background-color: rgba(11, 126, 178, 0.12);
  color: #000;
}


@media (max-width:1500px) {
  .login-card {
    padding: 34px 35px;
    max-width: 100%;
    margin-left: 0;
  }

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

  .heading p {
    font-size: 18px;
    width: 34%;
  }

  .form-pay-onys .form-card {
    width: 56%;
  }
}

@media (max-width:1024px) {
  .forgot-also .login-card h3 {
    font-size: 29px;
  }

  .form-pay-onys .form-card {
    width: 80%;
  }

  .forgot-also .login-card p {
    font-size: 17px;
  }

  .payment-body h3 {
    font-size: 22px;
  }

  .payment-note strong {
    font-size: 19px;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    border-top: 2px solid #097eb1;
  }

  .welcome-main {
    border-top-right-radius: 50px;
  }

  .login-card h3 {
    font-size: 30px;
  }

  p.login-p {
    font-size: 19px;
  }

  .login-wrapper {
    padding: 20px;
  }

  .login-card {
    padding: 28px 22px !important;
  }

     .forgot {
        margin-top: 11px;
    }

  .site-header {
    padding: 0 12px;
  }

  .menu-toggle {
    font-size: 30px;
    color: #000;
  }

  .nav.active {
    display: flex;
  }

  .actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}



@media (max-width:1024px) {
  .heading p {
    font-size: 18px;
    width: 49%;
    line-height: 28px;
  }

  .welcome-blue {
    padding: 40px 40px;
  }

  .welcome-white {
    padding: 45px 33px;
  }

  .welcome-main {
    max-width: 96%;
  }
}

@media (max-width:992px) {
  .form-card {
    width: 100%;
  }

  .form-wrapper {
    padding: 0 24px;
  }

  label {
    font-size: 15px!important;
    margin-bottom: 3px;
  }

  .form-wrapper {
    margin: 50px auto;
  }

  .btn-prev,
  .btn-next {
    min-width: 146px;
    height: 45px;
    font-size: 18px;
  }

  .btn-confirm {
    min-width: 199px;
    height: 45px;
    font-size: 17px;
  }
}

@media (max-width:768px) {
  .left-box img {
    display: none;
  }

  .form-wrapper-payment {
    margin-top: 60px;
  }

  .heading {
    margin: 55px 0 0px;
  }

  .welcome-blue {
    padding: 40px 2px;
  }

  .welcome-white {
    padding: 30px 12px;
  }

  .welcome-subtext {
    font-size: 15px;
    max-width: 100%;
    width: 77%;
  }

  .welcome-btn-advisor,
  .welcome-btn-client {
    width: 86%;
    height: 51px;
    margin: 0 auto 14px;
    font-size: 17px;
    box-sizing: border-box;
  }

  .auth-btn-signup,
  .auth-btn-signin {
    padding: 12px 32px;
    border-radius: 30px;
    width: 100%;
    max-width: 100%;
    font-size: 18px;
  }

  .advisor-subtext {
    max-width: 87%;
    margin-top: 6px;
  }

  .heading p {
    font-size: 17px;
    width: 61%;
    line-height: 28px;
    margin-bottom: 26px;
  }

  .forgot-also .login-card h3 {
    font-size: 25px;
    margin-bottom: 5px;
  }

  .forgot-also .login-card p {
    font-size: 16px;
    line-height: 22px;
  }

  .forgot-also .login-btn {
    margin-top: 17px;
  }

  .login-section {
    padding: 44px 0;
  }

  .login-card h3 {
    font-size: 25px;
    margin-bottom: 5px;
  }

  p.login-p {
    font-size: 17px;
  }

  .login-card {
    padding: 24px 19px !important;
  }

  .login-card .form-control {
    height: 48px;
  }

  .login-btn {
    margin-top: 12px;
  }

  .login-card p.bottom-text {
    font-size: 16px;
  }

  .bottom-text a {
    font-size: 17px;
  }

  .nav.active {
    height: 100vh;
  }

  .nav a {
    border-bottom: 1px solid #0B7EB2;
    padding-bottom: 17px;
  }

  .nav.active {
    gap: 20px;
  }

  .nav a {
    font-size: 16px;
  }
}

@media (max-width:576px) {
  .form-wrapper h2 {
    font-size: 34px;
  }

  .payment-subtext {
    font-size: 17px;
    text-align: left;
  }

  .welcome-blue {
    min-height: 480px;
  }

  .payment-note {
    margin-bottom: 70px;
  }

  .payment-subtext {
    font-size: 16px;
    text-align: left;
  }

  .payment-body h3 {
    font-size: 20px;
    line-height: 25px;
  }

  .payment-note strong {
    font-size: 16px;
  }

  .form-card br {
    display: none;
  }

  .payment-note strong {
    font-size: 18px;
  }

  .payment-note strong br {
    display: none;
  }

  .title-left span {
    font-size: 24px;
  }

  .form-pay-onys .form-card {
    width: 92%;
  }

  .welcome-main {
    max-width: 99%;
    flex-direction: column;
  }

  .welcome-white {
    padding: 55px 12px;
    width: 100%;
  }

  .heading h3 {
    font-size: 31px;
  }

  .welcome-subtext {
    font-size: 16px;
    max-width: 99%;
    width: 80%;
  }

  .auth-btn-signup,
  .auth-btn-signin {
    padding: 12px 32px;
    font-size: 17px;
    letter-spacing: .3px;
  }

  .welcome-title-text {
    font-size: 28px;
    margin-top: 10px;
  }

  .heading p {
    font-size: 16px;
    width: 95%;
    line-height: 26px;
    margin-bottom: 14px;
  }

  .auth-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin-top: 26px;
  }

  .welcome-blue {
    padding: 40px 2px;
    width: 100%;
  }

  input,
  select {
    height: 50px;
    font-size: 15px;
  }

  .form-wrapper p {
    max-width: 100%;
    margin: 0 auto 38px;
    font-size: 16px;
  }

  .title-left span {
    font-size: 26px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 17px 0px;
  }

  .btn-prev,
  .btn-next {
    min-width: 142px;
    height: 42px;
    font-size: 17px;
  }

  .btn-confirm {
    min-width: 152px;
    height: 42px;
    font-size: 16px;
    padding: 0 17px;
  }

  .pay-accept .gap-3 {
    gap: 0rem .4rem !important;
  }

  .pay-row {
    display: flex;
    gap: 0px;
    flex-direction: column;
  }
}

@media (max-width:450px) {
  .form-wrapper h2 {
    font-size: 30px;
  }

  .auth-btn-group {
    margin-top: 14px;
  }

  .payment-note strong {
    font-size: 17px;
  }

  .form-pay-onys .form-card {
    width: 94%;
  }

  .form-wrapper p {
    max-width: 100%;
    margin: 0 auto 29px;
    font-size: 15px;
  }

  .form-wrapper {
    padding: 0 12px;
  }

  .form-wrapper {
    margin: 42px auto;
  }

  .form-card {
    width: 100%;
    padding: 15px;
  }

  input,
  select {
    height: 50px;
    font-size: 15px;
    width: 100%;
  }

  .phone-field {
    display: flex;
    gap: 6px;
  }

  .title-left span {
    font-size: 24px;
  }

  .pay-check {
    display: flex;
    gap: 8px;
  }

  .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    padding: 0 2px;
    flex-direction: column;
  }

  .btn-prev,
  .btn-next {
    min-width: 100%;
    height: 42px;
    font-size: 16px;
    letter-spacing: .7px;
    margin-bottom: 9px;
  }

  .btn-confirm {
    min-width: 100%;
  }
}

@media (max-width:768px) {
    .div-top-policy {
        padding: 20px 15px;
        margin-top: 21px;
        margin-bottom: 20px;
    }
 
    .div-top-policy .head-top h1 {
        font-size: 25px;
        margin-top: 11px;
    }
}