 :root {
      --primary: #e8521a;
      --primary-dark: #c43d0a;
      --primary-light: #fff1ec;
      --gold: #f5a623;
      --dark: #1c1c2e;
      --navy: #0f2744;
      --text: #3a3a4a;
      --muted: #7a7a8c;
      --border: #e8e8f0;
      --bg: #f7f7fb;
      --white: #ffffff;
      --green: #1eb87a;
      --error: #e74c3c;
      --success: #1eb87a;
    }

/* ===== SPLIT LAYOUT ===== */
    .auth-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 100vh;
    }

    /* ===== LEFT PANEL ===== */
    .left-panel {
      background: linear-gradient(160deg, #0d1828 0%, #1c1c2e 45%, #2a1040 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 40px 48px;
    }
    /* Animated background shapes */
    .bg-shape {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .bg-shape-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(232,82,26,.15) 0%, transparent 70%);
      top: -150px; right: -150px;
      animation: shapeFloat 8s ease-in-out infinite;
    }
    .bg-shape-2 {
      width: 350px; height: 350px;
      background: radial-gradient(circle, rgba(245,166,35,.1) 0%, transparent 70%);
      bottom: -80px; left: -80px;
      animation: shapeFloat 10s ease-in-out infinite reverse;
    }
    .bg-shape-3 {
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(30,184,122,.08) 0%, transparent 70%);
      top: 50%; left: 30%;
      animation: shapeFloat 6s ease-in-out infinite;
    }
    @keyframes shapeFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-20px) scale(1.05); }
    }

    /* Floating property cards on left */
    .float-card {
      position: absolute;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(12px);
      border-radius: 14px;
      padding: 14px 18px;
      color: #fff;
      animation: cardFloat linear infinite;
      pointer-events: none;
    }
    .float-card-1 { width: 190px; top: 20%; right: 8%; animation-duration: 7s; }
    .float-card-2 { width: 170px; top: 48%; right: 14%; animation-duration: 9s; animation-delay: -3s; }
    .float-card-3 { width: 180px; top: 72%; right: 6%; animation-duration: 8s; animation-delay: -5s; }
    @keyframes cardFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    .fc-label { font-size: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 5px; }
    .fc-price { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 3px; }
    .fc-loc { font-size: 11px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 4px; }
    .fc-loc i { color: var(--primary); font-size: 10px; }
    .fc-badge { display: inline-block; margin-top: 7px; padding: 3px 9px; background: rgba(232,82,26,.25); border: 1px solid rgba(232,82,26,.4); border-radius: 20px; font-size: 10px; color: #ffb69c; font-weight: 600; }

    /* Left top logo */
    .left-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; position: relative; z-index: 1; }
    .left-logo .logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--primary), var(--gold)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 17px; }
    .left-logo .logo-text { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: #fff; }
    .left-logo .logo-text span { color: var(--primary); }

    /* Left middle content */
    .left-content { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0px 0; }
    .left-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 2.5vw, 2.6rem);
      color: #fff;
      line-height: 1.25;
      margin-bottom: 16px;
      opacity: 0; transform: translateY(22px);
      animation: fadeUp .8s .4s forwards;
    }
    .left-content h2 span { color: var(--primary); }
    .left-content p {
      color: rgba(255,255,255,.6);
      font-size: 14.5px;
      line-height: 1.8;
      max-width: 380px;
      margin-bottom: 0px;
      opacity: 0; animation: fadeUp .8s .6s forwards;
    }
    @keyframes fadeUp { to { opacity: 1; transform: none; } }

    /* Feature pills */
    .feature-list { display: flex; flex-direction: column; gap: 14px; opacity: 0; animation: fadeUp .8s .8s forwards; }
    .feature-item {
      display: flex; align-items: center; gap: 14px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px; padding: 13px 18px;
      transition: background .3s, border-color .3s;
    }
    .feature-item:hover { background: rgba(232,82,26,.1); border-color: rgba(232,82,26,.3); }
    .feature-icon { width: 36px; height: 36px; background: rgba(232,82,26,.2); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 15px; flex-shrink: 0; }
    .feature-text h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
    .feature-text p { font-size: 11.5px; color: rgba(255,255,255,.5); }

    /* Stats row */
    .left-stats {
      display: flex; gap: 28px; position: relative; z-index: 1;
      padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
      opacity: 0; animation: fadeUp .8s 1s forwards;
    }
    .ls-item { text-align: left; }
    .ls-num { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--primary); }
    .ls-lbl { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }

    /* ===== RIGHT PANEL ===== */
    .right-panel {
      background: var(--white);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 48px 56px;
      position: relative;
    }

    /* Back link */
    .back-link {
      position: absolute; top: 24px; left: 28px;
      display: flex; align-items: center; gap: 7px;
      color: var(--muted); font-size: 13px; font-weight: 500;
      text-decoration: none; transition: color .2s;
    }
    .back-link:hover { color: var(--primary); }
    .back-link i { font-size: 12px; transition: transform .2s; }
    .back-link:hover i { transform: translateX(-3px); }

    /* Form container */
    .auth-box {
      width: 100%; max-width: 420px;
      opacity: 0; transform: translateY(28px);
      animation: fadeUp .8s .2s forwards;
    }
    .form-heading {
      margin-bottom: 6px;
      margin-top: 20px;
    }
    /* Tab switcher */
    .auth-tabs {
      display: flex; gap: 0;
      background: var(--bg);
      border-radius: 12px; padding: 5px;
      margin-bottom: 0px; position: relative;
    }
    .auth-tab-slider {
      position: absolute; top: 5px; left: 5px;
      height: calc(100% - 10px);
      background: var(--white);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,.1);
      transition: left .35s cubic-bezier(.4,0,.2,1), width .35s cubic-bezier(.4,0,.2,1);
      z-index: 0;
    }
    .auth-tab {
      flex: 1; padding: 11px 0; border: none;
      background: transparent; font-size: 14px; font-weight: 600;
      font-family: 'Sora', sans-serif; cursor: pointer;
      position: relative; z-index: 1;
      color: var(--muted); transition: color .3s; border-radius: 8px;
    }
    .auth-tab.active { color: var(--primary); }

    /* Ripple on tab */
    .tab-rip {
      position: absolute; border-radius: 50%;
      background: rgba(232,82,26,.2);
      transform: scale(0); animation: rip .5s linear forwards;
      pointer-events: none; z-index: 2;
    }
    @keyframes rip { to { transform: scale(4); opacity: 0; } }

    /* Tab flash */
    .auth-tab-flash {
      position: absolute; inset: 0; border-radius: 12px;
      pointer-events: none; z-index: 3;
      animation: authFlash .45s ease forwards;
    }
    @keyframes authFlash {
      0%   { box-shadow: 0 0 0 0 rgba(232,82,26,0); }
      35%  { box-shadow: 0 0 0 5px rgba(232,82,26,.2); }
      100% { box-shadow: 0 0 0 0 rgba(232,82,26,0); }
    }

    /* Form panels */
    .auth-panel { display: none; animation: panelSlide .38s cubic-bezier(.4,0,.2,1); }
    .auth-panel.active { display: block; }
    @keyframes panelSlide {
      from { opacity: 0; transform: translateX(18px); }
      to   { opacity: 1; transform: none; }
    }

    /* Heading */
    .form-heading h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem; font-weight: 700; color: var(--dark); margin-bottom: 5px;
    }
    .form-heading p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

    /* User type selector */
    .user-type-row {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 10px; margin-bottom: 22px;
    }
    .utype-btn {
      padding: 11px 8px;
      border: 1.5px solid var(--border);
      border-radius: 10px; background: transparent;
      font-size: 12px; font-weight: 600;
      font-family: 'Sora', sans-serif;
      color: var(--muted); cursor: pointer;
      transition: all .25s; text-align: center;
      display: flex; flex-direction: column; align-items: center; gap: 5px;
    }
    .utype-btn i { font-size: 18px; transition: transform .3s; }
    .utype-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
    .utype-btn:hover i { transform: scale(1.15); }
    .utype-btn.active { border-color: var(--primary); color: var(--primary); background: var(--primary-light); box-shadow: 0 0 0 3px rgba(232,82,26,.12); }
    .utype-btn.active i { transform: scale(1.15); }

    /* Social login */
    .social-row { display: block; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
    .social-btn {
      padding: 10px 14px;
      border: 1.5px solid var(--border); border-radius: 10px;
      background: var(--white); font-size: 13px; font-weight: 600;
      font-family: 'Sora', sans-serif; color: var(--text);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      gap: 8px; transition: all .25s; width: 100%;
    }
    .social-btn:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.07); }
    .social-btn .g-icon { width: 18px; height: 18px; }

    /* Divider */
    .divider {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 22px; color: var(--muted); font-size: 12px; font-weight: 500;
    }
    .divider::before, .divider::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }

    /* Input group */
    .inp-group { margin-bottom: 16px; position: relative; }
    .inp-group label {
      display: block; font-size: 12px; font-weight: 600;
      color: var(--text); margin-bottom: 6px; letter-spacing: .3px;
    }
    .inp-group label span { color: var(--primary); }
    .inp-wrap { position: relative; }
    .inp-wrap i.inp-ico {
      position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
      color: var(--muted); font-size: 14px; pointer-events: none;
      transition: color .25s;
    }
    .inp-wrap input {
      width: 100%; padding: 12px 14px 12px 40px;
      border: 1.5px solid var(--border); border-radius: 10px;
      font-size: 14px; font-family: 'Sora', sans-serif;
      color: var(--text); outline: none;
      transition: border-color .25s, box-shadow .25s, background .25s;
      background: var(--white);
    }
    .inp-wrap input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(232,82,26,.1);
      background: var(--white);
    }
    .inp-wrap input:focus ~ i.inp-ico { color: var(--primary); }
    .inp-wrap input.has-error { border-color: var(--error); box-shadow: 0 0 0 3px rgba(231,76,60,.1); }
    .inp-wrap input.has-success { border-color: var(--success); }
    .inp-wrap .pwd-toggle {
      position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
      background: none; border: none; color: var(--muted); cursor: pointer;
      font-size: 14px; transition: color .2s; padding: 0;
    }
    .inp-wrap .pwd-toggle:hover { color: var(--primary); }
    .inp-error { font-size: 11.5px; color: var(--error); margin-top: 5px; display: none; align-items: center; gap: 4px; }
    .inp-error i { font-size: 11px; }
    .inp-error.show { display: flex; }
    .inp-success-ico {
      position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
      color: var(--success); font-size: 14px; display: none;
    }
    .inp-success-ico.show { display: block; }

    /* Password strength */
    .pwd-strength { margin-top: 8px; display: none; }
    .pwd-strength.show { display: block; }
    .strength-bar { display: flex; gap: 4px; margin-bottom: 5px; }
    .strength-seg {
      flex: 1; height: 4px; border-radius: 4px;
      background: var(--border); transition: background .3s;
    }
    .strength-seg.weak { background: var(--error); }
    .strength-seg.medium { background: var(--gold); }
    .strength-seg.strong { background: var(--success); }
    .strength-label { font-size: 11px; color: var(--muted); }

    /* Two column row */
    .inp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    /* Checkbox */
    .check-row {
      display: flex; align-items: flex-start; gap: 10px;
      margin-bottom: 3px; font-size: 13px; color: var(--muted);
    }
    .check-row input[type="checkbox"] {
      width: 16px; height: 16px; accent-color: var(--primary);
      margin-top: 2px; flex-shrink: 0; cursor: pointer;
    }
    .check-row a { color: var(--primary); text-decoration: none; font-weight: 600; }
    .check-row a:hover { text-decoration: underline; }

    /* Submit button */
    .submit-btn {
      width: 100%; padding: 13px;
      background: var(--primary); color: #fff; border: none;
      border-radius: 11px; font-size: 15px; font-weight: 700;
      font-family: 'Sora', sans-serif; cursor: pointer;
      transition: all .3s; position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      letter-spacing: .3px; margin-bottom: 18px;
    }
    .submit-btn::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(255,255,255,.18); transform: translateX(-101%);
      transition: transform .4s;
    }
    .submit-btn:hover::after { transform: translateX(101%); }
    .submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(232,82,26,.45); }
    .submit-btn:active { transform: translateY(0); }
    .submit-btn.loading { pointer-events: none; opacity: .8; }

    /* Forgot password */
    .forgot-row {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 16px;
    }
    .forgot-link { font-size: 12.5px; color: var(--primary); text-decoration: none; font-weight: 500; }
    .forgot-link:hover { text-decoration: underline; }

    /* Switch link */
    .switch-text { text-align: center; font-size: 13px; color: var(--muted); }
    .switch-text a { color: var(--primary); font-weight: 700; text-decoration: none; }
    .switch-text a:hover { text-decoration: underline; }

    /* OTP input row */
    .otp-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; }
    .otp-inp {
      width: 52px; height: 56px; border: 1.5px solid var(--border);
      border-radius: 12px; text-align: center; font-size: 22px; font-weight: 700;
      font-family: 'Sora', sans-serif; color: var(--dark); outline: none;
      transition: border-color .25s, box-shadow .25s;
    }
    .otp-inp:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,82,26,.12); }
    .otp-inp.filled { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
    .resend-row { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
    .resend-btn { background: none; border: none; color: var(--primary); font-weight: 700; font-family: 'Sora', sans-serif; font-size: 13px; cursor: pointer; }
    .resend-btn:disabled { color: var(--muted); cursor: not-allowed; }

    /* Toast */
    .toast {
      position: fixed; bottom: 28px; right: 28px;
      background: var(--dark); color: #fff;
      padding: 13px 20px; border-radius: 10px; font-size: 13.5px;
      box-shadow: 0 8px 28px rgba(0,0,0,.22);
      display: flex; align-items: center; gap: 9px;
      transform: translateY(70px); opacity: 0;
      transition: all .4s cubic-bezier(.175,.885,.32,1.275);
      z-index: 9999;
    }
    .toast.show { transform: translateY(0); opacity: 1; }
    .toast i { color: var(--primary); }

    /* Success screen */
    .success-screen {
      text-align: center; display: none;
      animation: fadeUp .6s forwards;
    }
    .success-screen.show { display: block; }
    .success-icon {
      width: 72px; height: 72px; background: rgba(30,184,122,.12);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; font-size: 30px; color: var(--success);
      animation: successPop .6s cubic-bezier(.175,.885,.32,1.5);
    }
    @keyframes successPop { from { transform: scale(0); } to { transform: scale(1); } }
    .success-screen h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--dark); margin-bottom: 8px; }
    .success-screen p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }

    /* Shake animation for errors */
    @keyframes shake {
      0%,100%{transform:translateX(0);}20%{transform:translateX(-7px);}40%{transform:translateX(7px);}60%{transform:translateX(-4px);}80%{transform:translateX(4px);}
    }
    .shake { animation: shake .4s; }

    @media (max-width: 900px) {
      .auth-layout { grid-template-columns: 1fr; }
      .left-panel { display: none; }
      .right-panel { padding: 36px 24px; }
      .auth-box { max-width: 100%; }
    }
    @media (max-width: 480px) {
      .inp-row { grid-template-columns: 1fr; }
      .user-type-row { grid-template-columns: repeat(3,1fr); }
      .right-panel { padding: 28px 18px; }
    }

    .strength-label {
      font-size: 11px;
      color: #02be5d;
    }
  .alert.alert-danger, .alert.alert-danger ul {
    color: red;
    font-size: 12px;
    font-weight: normal;
    margin-top: 10px;
    list-style: none !important;
  }
.utype-btn input {
	opacity: 0 !important;
	display: block !important;
	position: absolute;
	width: 100%;
	height: 100%;
  cursor: pointer;
	top: 0;
}
.utype-btn {
	position: relative;
}

.inp-error{
    display:none;
    color:#dc3545 !important;
    font-size:13px;
    margin-top:5px;
    align-items:center;
    gap:5px;
}

.inp-error.show{
    display:flex;
}

#signupBtn {
	margin-top: 15px !important;
	float: left;
}