* {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }

    html,
    body {
      height: 100%;
      min-height: 100vh;
      width: 100%;
      overflow: hidden;
      overflow-x: hidden;
    }

    body {
      font-weight: 700;
      display: flex;
      min-height: 100vh;
      background: linear-gradient(135deg, #00aff5 0%, #0077cc 100%);
      color: #fff;
      margin: 0;
      font-family: 'Roboto', sans-serif;
      width: 100%;
      overflow: hidden;
    }

    .main-container {
      display: flex;
      width: 100%;
      height: 100vh;
      min-height: 100vh;
      overflow: hidden;
    }

    .left-container,
    .right-container {
      flex: 1;
      display: flex;
      flex-direction: column;
      height: 100vh;
      min-height: 100vh;
      overflow: hidden;
      position: relative;
    }

    /* Hide scrollbar but keep functionality */
    .left-container::-webkit-scrollbar,
    .right-container::-webkit-scrollbar {
      display: none;
    }

    .left-container,
    .right-container {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .left-container {
      background: linear-gradient(135deg, #00aff5 0%, #0077cc 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      text-align: center;
      overflow: hidden;
    }

    .left-container::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
      z-index: 1;
    }

    .left-container-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 600px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      height: 100%;
     
      overflow: hidden;
    }

    /* Top Section - Animation and Logo */
    .top-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      flex-shrink: 0;
    }

    .animation-container {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 160px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 5px;
    }

    .logo-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 15px;
      flex-shrink: 0;
    }

    .logo-circle {
      width: 50px;
      height: 50px;
      background: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      flex-shrink: 0;
    }

    .logo-text {
      font-size: 24px;
      font-weight: 800;
      color: white;
      letter-spacing: 1px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Heading Section */
    .heading-section {
      text-align: center;
      margin-bottom: 15px;
      flex-shrink: 0;
      width: 100%;
    }

    .heading-section h1 {
      font-size: 20px;
      margin-bottom: 8px;
      color: white;
      font-weight: 800;
      line-height: 1.3;
    }

    .tagline {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.95);
      line-height: 1.4;
      font-weight: 500;
      max-width: 90%;
      margin: 0 auto;
    }

    /* Cards Section - Takes remaining space */
    .cards-section {
      width: 100%;
      flex: 1;
      display: flex;
      flex-direction: column;

      min-height: 280px;
      max-height: 350px;
    }

    .cards-container {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .card-row {
      display: flex;
      justify-content: center;
      gap: 10px;
      width: 100%;
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 5px;
      text-align: center;
      flex: 1;
      min-width: 0;
      max-width: 130px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, 0.25);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .card-icon {
      font-size: 20px;
      margin-bottom: 8px;
      color: white;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-icon i {
      font-size: 20px;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    .feature-card h3 {
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 5px;
      color: white;
    }

    .feature-card p {
      font-size: 10px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.2;
      margin: 0;
    }

    /* Right Container Styles */
    .right-container {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      background: white;
      height: 100vh;
    }

    .right-container__box {
      width: 100%;
      max-width: 420px;
      padding: 25px 35px;
      background: white;
      border-radius: 24px;
      border: 1px solid #e0f2fe;
      box-shadow: 0 15px 35px rgba(0, 175, 245, 0.1),
        0 5px 15px rgba(0, 175, 245, 0.05);
      position: relative;
    }

    .right-container__box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      
    }

    .right-container__h2 {
      font-size: 28px;
      color: #0c4a6e;
      margin-bottom: 8px;
      font-weight: 800;
      line-height: 1.2;
    }

    .right-container__p {
      opacity: .7;
      margin: 0 0 30px;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.5;
      color: #475569;
    }

    .input-container {
      display: flex;
      flex-direction: column;
      gap: 20px;

    }

    .input-group {
      position: relative;
    }

    .right-container__label {
      font-size: 13px;
      color: #0c4a6e;
      margin-bottom: 8px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .input-icon {
      width: 18px;
      height: 18px;
      fill: #00aff5;
    }

    .right-container__input {
      width: 100%;
      padding: 16px 20px 16px 50px;
      border-radius: 12px;
      border: 2px solid #e0f2fe;
      background: #f8fafc;
      color: #0c4a6e;
      font-family: 'Roboto', sans-serif;
      font-weight: 500;
      transition: all 0.3s ease;
      height: 52px;
      box-sizing: border-box;
      font-size: 15px;
    }

    .right-container__input:focus {
      outline: none;
      border-color: #00aff5;
      box-shadow: 0 0 0 3px rgba(0, 175, 245, 0.15);
      background: white;
    }

    .right-container__input::placeholder {
      color: #94a3b8;
    }

    .form-control.is-invalid {
      border-color: #ef4444;
      background: #fef2f2;
    }

    .invalid-feedback {
      font-size: 0.8rem;
      color: #ef4444;
      margin-top: 5px;
      font-weight: 500;
      min-height: 18px;
      display: block;
      padding-left: 18px;
    }

    .toggle-container {
      margin: 20px 0 25px;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #475569;
      font-weight: 500;
    }

    .toggle-box {
      appearance: none;
      width: 44px;
      height: 22px;
      border-radius: 20px;
      background-color: #e0f2fe;
      cursor: pointer;
      position: relative;
      transition: background-color 0.3s ease;
      flex-shrink: 0;
    }

    .toggle-box:checked {
      background-color: #00aff5;
    }

    .toggle-box:checked::after {
      transform: translateX(22px);
      transition: .4s ease-in-out;
    }

    .toggle-box::after {
      position: absolute;
      content: "";
      top: 3px;
      left: 3px;
      height: 16px;
      width: 16px;
      border-radius: 50%;
      background-color: white;
      transition: transform 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .btn {
      background: linear-gradient(135deg, #00aff5 0%, #0077cc 100%);
      width: 100%;
      border-radius: 12px;
      padding: 16px 0;
      color: white;
      font-family: 'Roboto', sans-serif;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 20px;
      border: none;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 175, 245, 0.3);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 175, 245, 0.4);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.7s;
    }

    .btn:hover::after {
      left: 100%;
    }

    .right-container__bottom-text {
      text-align: center;
      margin-top: 25px;
      font-size: 14px;
      color: #64748b;
      font-weight: 500;
      line-height: 1.5;
    }

    .right-container__bottom-text a {
      color: #00aff5;
      text-decoration: none;
      font-weight: 700;
      transition: color 0.3s ease;
      position: relative;
    }

    .right-container__bottom-text a:hover {
      color: #0077cc;
    }

    .right-container__bottom-text a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: #00aff5;
      transition: width 0.3s ease;
    }

    .right-container__bottom-text a:hover::after {
      width: 100%;
    }

    .links-container {
      display: flex;
      justify-content: space-between;
      align-items: center;

      flex-wrap: wrap;
      gap: 10px;
    }

    .links-container a {
      color: #00aff5;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: color 0.3s ease;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .links-container a:hover {
      color: #0077cc;
    }

    .links-container a svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }

    .form-group {
      margin-bottom: 15px;
      min-height: 80px;
    }

    .login-form {
      width: 100%;
    }

    .input-icon-container {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      pointer-events: none;
    }

    /* Responsive Media Queries */
    @media (max-width: 1024px) {
      .left-container {
        display: none !important;
        /* Completely hide left container */
      }

      .right-container {
        flex: 1;
        width: 100% !important;
        height: 100vh !important;
      }

      .main-container {
        flex-direction: row;
      }

      .right-container__box {
        max-width: 420px;
        margin: 0 auto;
      }

      .right-container__h2 {
        font-size: 26px;
      }

      .right-container__p {
        font-size: 13px;
      }
    }

    @media (max-width: 860px) {
      body {
        overflow-y: auto;
        height: auto;
      }

      .main-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
      }

      .left-container {
        display: none !important;
        height: 0;
        min-height: 0;
        padding: 0;
        margin: 0;
      }

      .right-container__box {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
  }

      .right-container__box {
        max-width: 450px;
        width: 100%;
        margin: -30px auto 0;
        border-radius: 20px;
      }

      .animation-container {
        height: 140px;
      }

      .heading-section h1 {
        font-size: 18px;
      }

      .tagline {
        font-size: 12px;
      }

      .cards-section {
        min-height: 220px;
        max-height: 250px;
      }

      .feature-card {
        padding: 10px 6px;
      }

      .card-icon i {
        font-size: 18px;
      }

      .feature-card h3 {
        font-size: 11px;
      }

      .feature-card p {
        font-size: 9px;
      }
    }

    @media (max-width: 640px) {
      .left-container {
        min-height: 45vh;
        padding: 15px;
      }

      .right-container__box {
        margin-top: -25px;
        padding: 25px 20px;
      }

      .right-container__h2 {
        font-size: 24px;
      }

      .right-container__input {
        padding: 14px 20px 14px 50px;
        height: 48px;
      }

      .btn {
        padding: 14px 0;
        height: 48px;
      }

      .card-row {
        gap: 8px;
      }

      .feature-card {
        max-width: 110px;
      }
    }

    @media (max-width: 480px) {
      .right-container__box {
        padding: 25px 20px;
        margin-top: -20px;
      }

      .right-container__h2 {
        font-size: 22px;
        text-align: center;
      }

      .right-container {
        padding: 15px;
      }

      .right-container__p {
        text-align: center;
      }

      .logo-text {
        font-size: 20px;
      }

      .links-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }

      .card-row {
        flex-wrap: wrap;
        justify-content: center;
      }

      .feature-card {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
        margin-bottom: 8px;
      }

      .cards-container {
        gap: 8px;
      }
    }

    @media (max-width: 360px) {
      .right-container__h2 {
        font-size: 20px;
      }

      .right-container__input {
        padding: 12px 18px 12px 45px;
        height: 45px;
        font-size: 14px;
      }

      .btn {
        padding: 12px 0;
        font-size: 15px;
        height: 45px;
      }

      .right-container__box {
        padding: 20px 18px;
        margin-top: -15px;
      }

      .feature-card {
        flex: 0 0 100%;
        max-width: 140px;
        margin: 0 auto 8px;
      }

      .card-row {
        flex-direction: column;
        align-items: center;
      }
    }