
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/* ================================================
   MAIN.CSS — Unified Design System
   Covers: auth-common, contact, login, register,
           reset-password, error page styles
   Responsive styles → responsive.css
   ================================================ */


/* ================================================
   DESIGN TOKENS — Global
   ================================================ */
:root {
  /* Colors */
  --color-primary: #0166ED;
  --color-primary-dark: #1a5fe0;
  --color-text: #001D40;
  --color-body: #727272;
  --color-border: #E9E9E9;
  --color-bg-input: #FAFAFA;
  --color-bg-section: #F5F5F5;
  --color-white: #ffffff;
  --color-link: #2b7cff;
  --color-check-border: #9B9B9B;
  --color-card-border: #F4F4F4;
  --color-error: #e53935;

  /* Border Radii */
  --radius-card: 20px;
  --radius-input: 12px;
  --radius-btn: 999px;
  --radius-badge: 999px;

  /* Shadows */
  --shadow-card:
    0 27.844px 27.028px rgba(0, 0, 0, 0.03),
    0 11px 10.075px rgba(0, 0, 0, 0.03),
    0 2.406px 3.584px rgba(0, 0, 0, 0.02);

  --shadow-input: 0 1px 2px rgba(16, 24, 40, 0.05);

  --shadow-btn:
    4px 4px 5px rgba(0, 0, 0, 0.10),
    7px 7px 20px rgba(0, 0, 0, 0.10),
    inset 2px 2px 4px rgba(255, 255, 255, 0.50);

  /* Typography */
  --font-base: "DM Sans", sans-serif;
}


/* ================================================
   AUTH SECTION — Shared page section wrapper
   ================================================ */
.auth-section {
  display: flex;
  padding: 163px 24px 80px 24px;
  justify-content: flex-end;
  align-items: flex-end;
  background: var(--color-bg-section) url('../img/contact-Frame.png') no-repeat left bottom;
  background-size: contain;
  /* min-height: calc(100vh - 80px); */
}


/* ================================================
   AUTH CONTAINER — Two-column layout
   ================================================ */
.auth-container {

  align-items: stretch;

  width: 100%;
  padding: 0;
  margin-bottom: 0px;
}


/* ================================================
   AUTH LEFT — Robot / image side
   ================================================ */
.auth-left {
  width: 48%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.auth-left img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: -35px;
}


/* ================================================
   AUTH RIGHT — Form side
   ================================================ */
.auth-right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}


/* ================================================
   AUTH CARD — The white form card
   ================================================ */
.auth-card {
  width: 100%;
  max-width: 678px;
  background: var(--color-white);
  padding: 50px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-card-border);
  display: flex;
  flex-direction: column;
  /* gap: 24px; */
  box-shadow: var(--shadow-card);
}


/* ================================================
   FORM TITLE
   ================================================ */
.form-title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 40px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.24px;
  text-transform: capitalize;
  text-align: center;
}


/* ================================================
   FORM SUBTITLE
   ================================================ */
.form-subtitle {
  margin: 0;
  color: var(--color-body);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 400;
  line-height: 174%;
  text-align: center;
}


/* ================================================
   FORM GROUP — Single field wrapper
   ================================================ */
.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}


/* ================================================
   FORM ROW — Side-by-side fields
   ================================================ */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}


/* ================================================
   INPUT FIELD
   ================================================ */
.input-field {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-input);
  border: 1px solid var(--color-border);
  background: var(--color-bg-input);
  font-family: var(--font-base);
  font-size: 14px;
  outline: none;
  box-shadow: var(--shadow-input);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.input-field:focus {
  border-color: var(--color-link);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(43, 124, 255, 0.12);
}

.input-field.has-error {
  border-color: var(--color-error) !important;
  background: #fff8f8;
}

.input-field.has-error:focus {
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}


/* ================================================
   TEXTAREA FIELD
   ================================================ */
.textarea-field {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-input);
  border: 1px solid var(--color-border);
  background: var(--color-bg-input);
  font-family: var(--font-base);
  font-size: 14px;
  outline: none;
  box-shadow: var(--shadow-input);
  resize: none;
  height: 120px;
  transition: border-color 0.2s, background 0.2s;
}

.textarea-field:focus {
  border-color: var(--color-link);
  background: var(--color-white);
}


/* ================================================
   PRIMARY BUTTON
   ================================================ */
.btn-primary {
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex: 1 0 0;
  width: 327px;
  height: 52px;
  border-radius: 100px;
  background: var(--Colours-Primary, #0166ED);
  box-shadow: 4px 4px 5px 0 rgba(0, 0, 0, 0.10), 7px 7px 20px 0 rgba(0, 0, 0, 0.10), 2px 2px 4px 0 rgba(255, 255, 255, 0.50) inset;
  color: var(--Base-White, #FFF);
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%;
  /* 27.9px */
  text-transform: capitalize;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: var(--shadow-btn);
  border: 0px;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(1, 102, 237, 0.35);
}


/* ================================================
   SECONDARY BUTTON (outline)
   ================================================ */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  padding: 0 32px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}


/* ================================================
   CUSTOM CIRCULAR CHECKBOX
   ================================================ */
.check-circle {
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 50%;
  border: 2px solid var(--color-check-border);
  background: var(--color-white);
  display: inline-block;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.check-circle:checked {
  border-color: var(--color-link);
  background: var(--color-link);
}

.check-circle:checked::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* ================================================
   TERMS ROW
   ================================================ */
.terms-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-base);
  font-size: 13px;
  color: #555;
  margin-bottom: 16px;
}

.terms-row label {
  cursor: pointer;
  line-height: 1.4;
}

.terms-row .terms-link {
  color: var(--color-link);
  cursor: pointer;
  text-decoration: none;
}


/* ================================================
   CAPTCHA / ROBOT BOX
   ================================================ */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  background: var(--color-white);
  font-family: var(--font-base);
  font-size: 13px;
}

.captcha-box .check-square {
  width: 16px;
  height: 16px;
  min-width: 16px;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid var(--color-check-border);
  background: var(--color-white);
  position: relative;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}

.captcha-box .check-square:checked {
  background: var(--color-link);
  border-color: var(--color-link);
}

.captcha-box .check-square:checked::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -62%) rotate(45deg);
}

.captcha-box img {
  width: 200px;
  height: auto;
  margin-bottom: 0px;
}


/* ================================================
   FORM BOTTOM ROW (CAPTCHA + BUTTON)
   ================================================ */
.form-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}


/* ================================================
   INLINE FIELD ERROR MESSAGE
   ================================================ */
.field-error-msg {
  font-family: var(--font-base);
  font-size: 12px;
  color: var(--color-error);
  margin-top: 4px;
  display: block;
  padding-left: 2px;
}

/* Contact form popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: none;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}

.popup-card {
  position: relative;
  max-width: 772px;
  width: 90%;
  background: #fff;
  border-radius: 12px;
  /* padding: 20px; */

  transform: scale(0.92);
  opacity: 0;
  transition: all 0.25s ease;
}

.popup-overlay.active .popup-card {
  transform: scale(1);
  opacity: 1;
}

/* Wide popup (for reset email form) */
.popup-card.popup-wide {
  max-width: 670px;
}


/* ================================================
   POPUP HEADER IMAGE
   ================================================ */
.popup-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.popup-img.grayscale {
  filter: grayscale(100%);
}


/* ================================================
   POPUP CLOSE BUTTON
   ================================================ */
.popup-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}

.popup-close:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* ================================================
   POPUP BODY
   ================================================ */
.popup-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  /* gap: 40px; */
}

.popup-body h2,
.popup-body h3,
.popup-body p {
  color: var(--Colours-Text, #001D40);
  text-align: center;

  /* H/H2 */
  font-family: "DM Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 52px */
  letter-spacing: -0.24px;
  text-transform: capitalize;
  margin-bottom: 12px;
}
.mod_img {
  height: 240px;
  max-width: 100%;
  background: url('../img/tacobelltrump.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.popup-body p {
  margin-bottom: 56px;
  color: var(--Base-02, #727272);
  text-align: center;

  /* P/Standard */
  font-family: "DM Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 174%; /* 26.1px */
}
.mdscm {
  max-width: 772px;
}


/* ================================================
   POPUP ACTIONS
   ================================================ */
.popup-actions {
  padding: 0px 40px 40px 40px;
  display: flex;
  gap: 12px;
}

.popup-actions .btn-primary,
.popup-actions .btn-secondary {
  flex: 1;
  height: 52px;
}


/* ================================================
   POPUP FORM (wide reset email form)
   ================================================ */
.popup-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* ================================================
   POPUP CHECKBOX ROW (shared: login + register)
   ================================================ */
.popup-checkbox-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;

}

.popup-terms-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-base);
  font-size: 15px;
  color: #555;
  cursor: pointer;
  flex: 1;
}

.popup-terms-label .terms-link {
  color: var(--color-link);
  text-decoration: none;
}


/* ================================================
   CONTACT SECTION OVERRIDES
   ================================================ */
.auth-section.contact-section {
  align-items: flex-end;
}

.contact-section .auth-left {
  width: 45%;
  align-items: flex-end;
}

.contact-section .auth-right {
  width: 54%;
  align-items: flex-start;
}

.contact-section .auth-card {
  max-width: 718px;
  gap: 20px;
}

.contact-section form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-section .form-row {
  margin-bottom: 10px;
}

.contact-section .textarea-field {
  margin-bottom: 16px;
}


/* ================================================
   CONTACT INFO BADGES
   ================================================ */
.contact-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.contact-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #F5F5F5;
  font-family: var(--font-base);
  font-size: 13px;
  color: #444;
  white-space: nowrap;
}

.contact-info span img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-bottom: 0 !important;
}


/* ================================================
   LOGIN SECTION OVERRIDES
   ================================================ */
.auth-section.login-section {
  align-items: center;
}

.login-section .auth-left {
  align-items: flex-end;
}

.login-section .auth-right {
  width: 686px;
  align-items: center;
}

.login-section .auth-card {
  max-width: 686px;
  gap: 24px;
}


/* ================================================
   REMEMBER ME / FORGOT PASSWORD ROW
   ================================================ */
.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.login-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-base);
  font-size: 13px;
  color: #555;
}

.login-options a {
  font-family: var(--font-base);
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
}

.login-options a:hover {
  text-decoration: underline;
}


/* ================================================
   RESET POPUP TITLE / SUBTITLE
   ================================================ */
.reset-popup-title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
}

.reset-popup-subtitle {
  margin: 0;
  color: var(--color-body);
  font-family: var(--font-base);
  font-size: 15px;
  line-height: 174%;
  text-align: center;
}


/* ================================================
   REGISTER SECTION OVERRIDES
   ================================================ */
.auth-section.register-section {
  align-items: center;
}

.register-section .auth-left {
  width: 60%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  order: 1;
}

.register-section .auth-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
}

.register-section .auth-right img {
  width: 800px;
  height: 700px;
  object-fit: contain;
  display: block;
  margin: 0;
  margin-bottom: -70px;
}

.register-section .auth-card {
  width: 100%;
  z-index: 9;
}


/* ================================================
   REGISTER FORM
   ================================================ */
.register-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}




/* ================================================
   PASSWORD FIELD — with eye toggle button
   ================================================ */
.register-password-group {
  position: relative;
}

.register-password-group .input-field {
  padding-right: 44px;
}

.toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-body);
  transition: color 0.2s;
  line-height: 1;
}

.toggle-password:hover {
  color: var(--color-primary);
}


/* ================================================
   PASSWORD STRENGTH INDICATOR
   ================================================ */
.password-strength {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.strength-bar {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: var(--color-border);
  transition: background 0.3s;
}

.strength-bar.weak {
  background: #e53935;
}

.strength-bar.fair {
  background: #fb8c00;
}

.strength-bar.strong {
  background: #43a047;
}


/* ================================================
   LOGIN LINK (bottom of register form)
   ================================================ */
.register-login-link {
  margin: 0;
  text-align: center;
  font-family: var(--font-base);
  font-size: 13px;
  color: var(--color-body);
}

.register-login-link a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

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


/* ================================================
   RESET PASSWORD SECTION OVERRIDES
   ================================================ */
.auth-section.reset-section {
  align-items: center;
}

.reset-section .auth-left {
  width: 50%;
  align-items: center;
  justify-content: center;
}

.reset-section .auth-left img {
  width: 80%;
}

.reset-section .auth-right {
  width: 46%;
  align-items: center;
}

.reset-section .auth-card {
  max-width: 650px;
  gap: 20px;
}


/* ================================================
   ERROR PAGE
   ================================================ */
.error-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 144px 20px 80px;
  background: var(--color-bg-section) url('../img/errorframe.png') no-repeat left bottom;
  background-size: contain;
}

.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 500px;
  width: 100%;
}

.error-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.error-image img {
  width: 100%;
  height: auto;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.error-title {
  color: var(--Core-Off-Black, #0E0E0E);
  text-align: center;
  font-family: "DM Sans";
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 83.2px */
  letter-spacing: -0.384px;
  text-transform: capitalize;
  margin-bottom: 0px;
}

.error-description {
  color: var(--Base-01, #383838);
  text-align: center;
  font-family: "DM Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 174%;
  /* 26.1px */
  margin: 0;
  width: 100%;
  max-width: 502px;
}


/* ================================================
   RESPONSIVE.CSS — All breakpoints & media queries
   Covers: auth-common, contact, login, register,
           reset-password, error page
   Base styles → main.css
   ================================================ */


/* ================================================
   BREAKPOINT: 980px
   ================================================ */
@media (max-width: 980px) {

  /* ── Auth Common ── */
  .auth-section {
    padding: 100px 40px 0;
    align-items: center;
  }

  .auth-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .auth-left {
    width: 100%;
    max-width: 420px;
    justify-content: center;
    align-items: flex-end;
  }

  .auth-left img {
    width: 80%;
    margin-bottom: -30px;
  }

  .auth-right {
    width: 100%;
    justify-content: center;
  }

  .auth-card {
    max-width: 100%;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
  }

  .form-title {
    font-size: 32px;
  }

  /* ── Contact ── */
  .auth-section.contact-section {
    align-items: center;
  }

  .contact-section .auth-left {
    width: 100%;
  }

  .contact-section .auth-right {
    width: 100%;
  }

  /* ── Login ── */
  .login-section .auth-left {
    width: 100%;
    max-width: 380px;
  }

  .login-section .auth-right {
    width: 100%;
  }

  /* ── Register ── */
  .auth-section.register-section {
    align-items: center;
  }

  /* Image goes ABOVE (order:1), form goes BELOW (order:2) */
  .register-section .auth-left {
    width: 100%;
    order: 2;
    justify-content: center;
    align-items: center;
  }

  .register-section .auth-right {
    width: 100%;
    max-width: 100%;
    order: 1;
    justify-content: center;
    align-items: flex-end;
  }

  .register-section .auth-right img {
    width: 80%;
    height: auto;
    margin-bottom: -20px;
  }

  .register-section .auth-card {
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    max-width: 100%;
  }

  /* ── Reset Password ── */
  .reset-section .auth-left {
    width: 100%;
    max-width: 360px;
  }

  .reset-section .auth-left img {
    width: 70%;
  }

  .reset-section .auth-right {
    width: 100%;
  }
}


/* ================================================
   BREAKPOINT: 768px
   ================================================ */
@media (max-width: 768px) {

  /* ── Auth Common ── */
  .auth-section {
    padding: 80px 20px 0;
  }
  .ftnm {
    margin-bottom: 12px;
  }
  .fstnm {
    margin-bottom: 24px;
  }

  .auth-card {
    padding: 24px;
    /* gap: 20px; */
    border-radius: 16px;
  }

  .form-title {
    font-size: 28px;
  }

  .form-subtitle {
    font-size: 15px;
    margin-top: -8px;
  }

  .btn-primary,
  .btn-secondary {
    height: 48px;
    font-size: 14px;
  }
  
}


/* ================================================
   BREAKPOINT: 600px
   ================================================ */
@media (max-width: 600px) {

  /* ── Auth Common ── */
  .auth-section {
    padding: 86px 0 0;
    background-size: cover;
    background-position: center bottom;
    align-items: flex-start;
  }

  .auth-left {
    max-width: 100%;
  }

  .auth-left img {
    width: 100%;
    margin-bottom: -20px;
  }

  .auth-card {
    border-radius: 0;
    padding: 24px;
  }

  .form-title {
    font-size: 30px;
    color: var(--Colours-Text, #001D40);
    text-align: center;

    /* H/H3 */
    font-family: "DM Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 39px */
    letter-spacing: -0.18px;
    text-transform: capitalize;
  }
  

  .form-row {
    flex-direction: column;
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
.no_paddingat_all {
  padding: 0px!important;
}
.phone_height {
  height: 324px;
}
  .form-bottom-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .captcha-box {
    width: 100%;
    justify-content: flex-start;
  }

  .btn-primary {
    width: 100%;
    max-width: 327px;
    margin: auto;
  }

  .error-content {
    max-width: 327px;
    margin: auto;

  }

  .error-section {
    min-height: 100%;
    background: var(--Base-White, #FFF);
    padding: 85px 20px 40px;
  }

  /* ── Popup ── */
  .popup-card {
    max-width: 100%;
    border-radius: 8px;
  }
  .contact-section .form-row {
    margin-bottom: 0px;
  }

  .popup-body h2,
  .popup-body h3 {
    font-size: 25px;
  }

  .popup-actions {
    flex-direction: column;
  }

  .popup-img {
    height: 150px;
    border-radius: 8px 8px 0px 0px;
  }

  /* ── Popup Checkbox Row ── */
  .popup-checkbox-row {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  

  /* ── Contact ── */
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* ── Login ── */
  .captcha-box {
    width: 100%;
    justify-content: space-between;
  }

  .reset-popup-title {
    font-size: 24px;
  }

  /* ── Register ── */
  /* .register-section .auth-right {
    max-width: 260px;
  } */

  .contact-section .textarea-field {
    margin-bottom:8px;
  }
  .register-section .auth-right img {
    width: 100%;
    /* margin-bottom: -16px; */
  }

  .register-section .auth-card {
    border-radius: 0;
  }

  .register-form {
    gap: 12px;
  }

  /* ── Reset Password ── */
  .reset-section .auth-left img {
    width: 80%;
  }

  .reset-section .auth-card {
    border-radius: 0;
  }

  .error-title {
    color: var(--Core-Off-Black, #0E0E0E);
    text-align: center;
    font-family: "DM Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    /* 83.2px */
    letter-spacing: -0.384px;
    text-transform: capitalize;
    margin-bottom: 0px;
  }

  .error-description {
    color: var(--Base-01, #383838);
    text-align: center;
    font-family: "DM Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 174%;
    text-align: center;
    margin-bottom: 12px;
    font-size: 15px;
  }
  .main-login .auth-left img{
    width: 356px;
    height: 345px;
    flex-shrink: 0;
    aspect-ratio: 97 / 94;
    transform: translate(3px, -19px);
  }
  .auth-section.main-login{
    align-items: center;
    padding: 130px 0px 80px !important;
  }
  .main-login .login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .login-options{
    padding: 12px 0px;
  }
}
@media screen and (min-width: 700px) and (max-width: 970px)  {
  .main-login .auth-left {
    width: 100%;
    max-width: 502px;
  }


}

.auth-container .auth-left{
  width: 100%;
}
.auth-container .auth-right{
  width: 100%;
}
.login-section .auth-right {
    width: 686px;
    align-items: center;
    max-width: 100%;
}
.login-section .auth-left img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -115px;
    width: 785px;
    height: 762px;
    aspect-ratio: 239 / 232;
    max-width: 100%;
}
.login-section .login-form{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.login-section .login-form button{
    border-radius: 100px;
    background: var(--Colours-Primary, #0166ED);
    box-shadow: 4px 4px 5px 0 rgba(0, 0, 0, 0.10), 7px 7px 20px 0 rgba(0, 0, 0, 0.10), 2px 2px 4px 0 rgba(255, 255, 255, 0.50) inset;
    border: 0px;
    width: 100%;
}
.main-login .form-title {
    margin-bottom: 8px;
}
.login-section .auth-card {
    width: 686px;
    gap: 24px;
    max-width: 100%;
}
.login-pop p {
    margin-bottom: 24px;
}
.login-pop .captcha-box {
  border: 0px solid #dcdcdc;
}
.login-pop  .popup-checkbox-row input{
    transform: translate(-3px, 5px);
}
.login-pop  .btn-primary {
  width: 100%;
}
.login-pop #resetTermsError{
  display: none;
}
.login-pop  .captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 14px;
}
@media screen and (min-width: 300px) and (max-width: 790px)  {
  .auth-section.main-login {
      align-items: center;
      padding: 115px 0px 0px !important;
  }

  .login-section .auth-left img{
      width: 356px;
      height: 345px;
      flex-shrink: 0;
      aspect-ratio: 97 / 94;
      margin-bottom: -20px;
  }
  .login-section .login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .login-options {
      padding: 8px 0px;
  }
  .login-iput{
    margin-bottom: -8px;
  }
  .popup-body.login-pop{
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
  }
  .login-pop .popup-close {
    display: flex;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex: 1 0 0;
    border-radius: 100px;
    border: 1px solid var(--Base-03, #BDBDBD);
    background: var(--Base-Off-White, #FAFAFA);
    width: 100%;
    color: var(--Colours-Text, #001D40);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 155%;
    text-transform: capitalize;
    height: 52px;
    position: unset;
    margin-top: -16px;
  }
  .login-pop .captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 14px;
    transform: translate(10px, 18px);
  }
  .login-pop .popup-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1090px)  {
  .login-section .auth-left img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -115px;
    width: 785px;
    height: 762px;
    aspect-ratio: 239 / 232;
    max-width: 100%;
    object-fit: contain;
  }

}
@media screen and (min-width: 1100px) and (max-width: 1190px)  {
  .login-section .auth-left img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -115px;
    width: 785px;
    height: 762px;
    aspect-ratio: 239 / 232;
    max-width: 100%;
    object-fit: contain;
  }

}
@media screen and (min-width: 1200px) and (max-width: 1290px)  {
  .login-section .auth-left img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -115px;
    width: 785px;
    height: 762px;
    aspect-ratio: 239 / 232;
    max-width: 100%;
    object-fit: contain;
  }

}

@media screen and (min-width: 1300px) and (max-width: 1390px)  {
  .login-section .auth-left img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -115px;
    width: 785px;
    height: 762px;
    aspect-ratio: 239 / 232;
    max-width: 100%;
    object-fit: contain;
  }

}