 body {
      margin: 0;
      padding: 0;
      background: #f0f2f5;
      font-family: 'Roboto', sans-serif;
    }

    .page-container {
      width: 85%;
      margin: 30px auto;
      background: #fff;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
    }

    .sticky-logo-bar {
      position: sticky;
      top: 0;
      background: #fff;
      padding: 10px 20px;
      /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
      z-index: 1000;
      border-radius: 8px;
    }

    .sticky-logo-bar img {
      width: 75px;
      height: 75px;
    }

    .content-row {
      display: flex;
      flex-wrap: nowrap; /* no wrap at all */
      align-items: stretch;
      justify-content: space-between;
      padding: 20px;
      gap: 20px;
      margin-bottom: 0;
    }

    .text-column {
      flex: 1 1 55%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero {
      flex: 0 1 38%;
      min-width: 250px;
      border: 2px dashed #000;
      overflow: hidden;
      background: #fff;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero img {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    .slider-dots {
      position: absolute;
      bottom: 10px;
      left: 10px;
    }

    .slider-dots span {
      display: inline-block;
      width: 20px;
      height: 20px;
      line-height: 20px;
      border-radius: 50%;
      background: #ccc;
      color: #000;
      font-size: 12px;
      margin: 0 3px;
      cursor: pointer;
      user-select: none;
      text-align: center;
    }

    .slider-dots .active {
      background: #28a745;
      color: #fff;
    }

    h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 48px;
      margin: 0 0 10px 0;
    }

    p.subheading {
      font-family: 'Roboto', sans-serif;
      font-size: 25px;
      color: #555;
      margin: 0;
    }

    .form-box {
      border: 2px dashed #333;
      background: #dff0ff;
      padding: 20px;
      margin-top: 20px;
    }

    .form-box p {
      font-family: 'Roboto', sans-serif;
      font-size: 18px;
      margin: 0 0 5px 0;
    }

    .form-box p.note {
      font-size: 14px;
      font-style: italic;
      color: #333;
      margin: 0;
    }

    input[type="email"] {
      padding: 10px;
      width: 60%;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 18px;
      font-family: 'Roboto', sans-serif;
    }

    button {
      padding: 11px 20px;
      background: #28a745;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 18px;
      cursor: pointer;
      margin-left: 10px;
      font-family: 'Poppins', sans-serif;
    }

    .features {
      display: flex;
      justify-content: space-around;
      text-align: center;
      margin-top: 0;
    }

    .feature {
      width: 30%;
      padding: 20px 0;
    }

    .feature-icon img {
      width: 100px;
      height: 100px;
      margin-bottom: 10px;
    }

    .feature-title {
      font-family: 'Poppins', sans-serif;
      font-weight: bold;
      font-size: 18px;
    }

    .feature-desc {
      font-family: 'Roboto', sans-serif;
      color: #555;
      font-size: 16px;
    }

    .copyright {
      text-align: center;
      color: #777;
      font-size: 14px;
      margin: 40px 0;
    }
    .text-danger{
        color:red;
    }
    .form-control {
    /* display: block; */
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-link:disabled{
    opacity: 0.5;
    pointer-events:none;
}
.mt-3, .my-3{
    margin-top:1rem;
}
.align-items-center {
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.justify-content-center {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
.btn-link {
    font-weight: 400;
    color: #007bff;
    background-color: transparent;
}
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
    .otp-input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 5px;
}
.d-none{
    display: none;
}
.d-flex{
    display: flex;
}

.justify-content-center {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
    /* NEW: Only ONE mobile breakpoint - stack everything below 1200px */
    @media(max-width: 1200px) {
      .content-row {
        flex-direction: column;
      }
      .hero {
        flex-basis: 100%;
        width: 100%;
      }
      .features {
        flex-direction: column;
        gap: 20px;
      }
      .feature {
        width: 100%;
      }
    }

 /* Login button */

  .login-btn {
    background: #4A90E2;
    color: white;
    line-height: 1.4;
    padding: 6px 24px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
    border: 2px solid transparent;
  }

  .login-btn:hover {
    background: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    cursor: pointer;
  }

  /* Spacer to simulate content above the form */

  .spacer {
    height: 500px;
  }

  /* Form wrapper */

  .form-wrapper {
    /* max-width: 400px; 
    padding: 20px;
    margin-top: 40px;
    border: 2px dashed #4A90E2;
    border-radius: 10px;
    background: #f9f9f9;*/
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  /* Glow effect when activated */

  .form-wrapper.glow {
    animation: pulse-glow 1.5s ease-out;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.8);
    border-color: #4A90E2;
  }

  @keyframes pulse-glow {
    0% {
      box-shadow: 0 0 0 rgba(74, 144, 226, 0.0);
    }
    30% {
      box-shadow: 0 0 20px rgba(74, 144, 226, 0.9);
    }
    100% {
      box-shadow: 0 0 0 rgba(74, 144, 226, 0.0);
    }
  }

  /* Simple form styling */

  .form-wrapper h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
  }

  .form-group input[type="email"] {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
  }

  .form-submit-btn {
    background: #4A90E2;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .form-submit-btn:hover {
    background: #357ABD;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transform: translateY(-1px);
  }
  .d-flex{
    display: flex;
  } 
  .justify-content-between{
    justify-content: space-between !important;
  }
  .align-items-center{
    align-items: center;
  }
  .me-3{
    margin-right: 20px;
  }