
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: normal 125%/1.4 Helvetica Neue, Segoe UI, Roboto, Ubuntu, sans-serif;
    }
    
    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      background: linear-gradient(135deg, #f0f7ff 0%, #e6f4ff 100%);
      position: relative;
    }
    
    .login-btn {
      background: #A0CD4A;
      color: white !important;
      padding: 8px 20px;
      border-radius: 8px;
      font-weight: 500;
      transition: all 0.3s;
    }
    
    .login-btn:hover {
      background: #8bb742;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(160, 205, 74, 0.3);
    }
    
    /* Login Form Styles */
    .login-container {
      background: white;
      border-radius: 24px;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      max-width: 480px;
      margin: -30px auto 50px;
      position: relative;
      z-index: 10;
      overflow: hidden;
      flex-grow: 1;
    }
    
    .form-section {
      padding: 40px;
    }
    
    /* Progress Steps */
    .progress-steps {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
      position: relative;
    }
    
    .progress-line {
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 2px;
      background: #e2e8f0;
      z-index: 1;
    }
    
    .progress-line-fill {
      height: 100%;
      background: linear-gradient(90deg, #2563eb);
      width: 0%;
      transition: width 0.5s ease;
      border-radius: 1px;
    }
    
  .step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: 2px solid #ccc;
    background: white;
    color: #333;
    margin: 0 10px;
    transition: all 0.3s ease;
  }

  .step.active {
    background: white;
    color: #0A66C2;
    border-color: #0A66C2;
    /* box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.2); */
  }

  .step.completed {
    background: #0A66C2;
    color: white;
    border-color: #0A66C2;
  }
    
    .step:not(:last-child) {
      margin-right: 120px;
    }
    
    /* Form Steps */
    .form-step {
      display: none;
      opacity: 0;
      transform: translateX(30px);
      transition: all 0.4s ease;
    }
    
    .form-step.active {
      display: block;
      opacity: 1;
      transform: translateX(0);
    }
    
    .step-title {
      font-size: 20px;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 8px;
      text-align: center;
    }
    
    .step-description {
      color: #64748b;
      font-size: 14px;
      text-align: center;
      margin-bottom: 19px;
      line-height: 1.5;
    }
    
    /* Input Groups */
    .input-group {
      /* margin-bottom: 24px; */
      justify-content: center;
      align-items: center;
    }
    
    .input-label {
      display: block;
      color: #334155;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    
    /* Phone Input */
    .phone-input-container {
      display: flex;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      background: white;
      width: 100%;
    }
    
    .phone-input-container:focus-within {
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }
    
    .country-code {
      background: #f8fafc;
      border-right: 1px solid #e2e8f0;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      color: #334155;
      min-width: 100px;
    }
    
    .flag {
      width: 24px;
      height: 16px;
      background: linear-gradient(to bottom, #FF9933 33%, #FFFFFF 33% 66%, #138808 66%);
      border-radius: 2px;
      border: 1px solid #cbd5e1;
    }
    
    .phone-input {
      flex: 1;
      padding: 16px;
      border: none;
      outline: none;
      font-size: 16px;
      color: #0f172a;
      background: transparent;
    }
    
    .phone-input::placeholder {
      color: #94a3b8;
    }
    
    /* Slider Container */
    .slider-container {
      position: relative;
      height: 200px;
      overflow: hidden;
      border-radius: 16px;
      margin-bottom: 30px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .slider-wrapper {
      display: flex;
      height: 100%;
      transition: transform 0.5s ease-in-out;
    }
    
    .slide {
      flex: 0 0 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 30px;
      background: rgba(255, 255, 255, 0.9);
      color: #0f172a;
      text-align: center;
    }
    
    .slide-icon {
      font-size: 48px;
      color: #0A66C2;
      margin-bottom: 20px;
    }
    
    .slide-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #0f172a;
    }
    
    .slide-description {
      font-size: 16px;
      color: #475569;
      max-width: 600px;
      line-height: 1.5;
    }
    
    .slider-dots {
      position: absolute;
      bottom: 15px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 8px;
    }
    
    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .dot.active {
      background: white;
      transform: scale(1.2);
    }

    /* OTP Input - 4 digits */
    .otp-container {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-bottom: 19px;
    }
    
    .otp-digit {
      width: 50px;
      height: 50px;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      color: #0f172a;
      outline: none;
      transition: all 0.3s ease;
      background: white;
    }
    
    .otp-digit:focus {
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }
    
    .otp-digit.filled {
      /* background: #2563eb; */
      color: #2563eb;
      /* border-color: #2563eb; */
    }
    
    /* Timer */
    .timer-section {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 11 px;
      text-align: center;
      margin-bottom: 19px;
    }
    
    .timer-label {
      color: #64748b;
      font-size: 14px;
      margin-bottom: 4px;
    }
    
    .timer-value {
      font-size: 19px;
      font-weight: 700;
      color: #2563eb;
    }
    
    .timer-section.expired {
      background: #fef2f2;
      border-color: #fecaca;
    }
    
    .timer-section.expired .timer-value {
      color: #dc2626;
    }
    
    /* Buttons */
    .btn {
      width: 100%;
      padding: 16px;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .btn-primary {
      background: #0A66C2;
      color: white;
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.4);
    }
    
    .btn-primary:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }
    
    .btn-secondary {
      background: white;
      color: #334155;
      border: 2px solid #e2e8f0;
      margin-bottom: 16px;
    }
    
    .btn-secondary:hover {
      background: #f1f5f9;
      border-color: #cbd5e1;
    }
    
    .btn-link {
      background: transparent;
      color: #2563eb;
      padding: 8px 16px;
      font-size: 14px;
      text-decoration: underline;
    }
    
    .btn-link:hover {
      color: #1d4ed8;
      background: rgba(37, 99, 235, 0.05);
    }
    
    /* Security Badge */
    .security-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #64748b;
      font-size: 12px;
      margin-top: 24px;
      padding: 12px;
      background: #f8fafc;
      border-radius: 8px;
    }
    
    /* Business Trust Elements */
    .trust-indicators {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid #e2e8f0;
    }
    
    .trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #64748b;
      font-size: 12px;
    }
    
    /* Floating Background Shapes */
    .floating-shapes {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
    }
    
    .shape {
      position: absolute;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }
    
    .shape:nth-child(1) {
      width: 80px;
      height: 80px;
      top: 20%;
      left: 10%;
      animation-delay: 0s;
    }
    
    .shape:nth-child(2) {
      width: 60px;
      height: 60px;
      top: 60%;
      right: 10%;
      animation-delay: 2s;
    }
    
    .shape:nth-child(3) {
      width: 40px;
      height: 40px;
      bottom: 20%;
      left: 20%;
      animation-delay: 4s;
    }

     .hero-section {
      background: #0A66C2;
      padding: 40px 0 60px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .hero-subtitle {
      font-size: 20px;
      font-weight: 400;
      opacity: 0.9;
      margin-bottom: 40px;
    }

    /* Header Section with Slider */
    .header-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    .action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 19px;
    width: 100% !important;
  }

  .action-btn {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 175px;
    height: 50px;
  }

  .whatsapp-btn {
    background: #25D366;
    color: white;
  }

  .whatsapp-btn:hover {
    background: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  .sms-btn {
    background: #2563eb;
    color: white;
  }

  .sms-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  }

  .action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {

      .action-btn {
        width: 150px;
     
      }


      .login-container {
        margin: 20px auto;
        max-width: 95%;
      }
      
      .form-section {
        padding: 25px;
      }
      
      .step:not(:last-child) {
        margin-right: 80px;
      }
      
      .progress-line {
        width: 80px;
      }
      
      .slider-container {
        height: 180px;
      }
      
      .otp-digit {
        width: 60px;
        height: 70px;
        font-size: 28px;
      }
    }
    
    @media (max-width: 576px) {
      .step:not(:last-child) {
        margin-right: 50px;
      }
      
      .progress-line {
        width: 50px;
      }
      
      .slider-container {
        height: 160px;
      }
      
      .slide-icon {
        font-size: 36px;
      }
      
      .slide-title {
        font-size: 18px;
      }
      
      .slide-description {
        font-size: 14px;
      }
      
      .otp-digit {
        width: 55px;
        height: 65px;
        font-size: 24px;
      }
      
      .trust-indicators {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
    }
    
    @media (max-width: 480px) {

      .hero-section{
        padding: 39px 0 14px;
      }

      .form-section {
        padding: 20px;
      }
      
      .step {
        width: 35px;
        height: 35px;
        font-size: 12px;
      }
      
      .step:not(:last-child) {
        margin-right: 40px;
      }
      
      .progress-line {
        width: 40px;
      }
      
      .slider-container {
        height: 140px;
      }
      
      .slide {
        padding: 20px;
      }
      
      .slide-icon {
        font-size: 32px;
        margin-bottom: 15px;
      }
      
      .slide-title {
        font-size: 16px;
      }
      
      .slide-description {
        font-size: 13px;
      }
      
      .otp-container {
        gap: 8px;
      }
      
      .otp-digit {
        width: 50px;
        height: 60px;
        font-size: 20px;
      }
      
      .country-code {
        min-width: 80px;
        padding: 12px;
      }
    }
    
    @media (max-width: 360px) {
      .step:not(:last-child) {
        margin-right: 30px;
      }
      
      .progress-line {
        width: 30px;
      }
      
      .slider-container {
        height: 120px;
      }
      
      .slide {
        padding: 15px;
      }
      
      .slide-icon {
        font-size: 28px;
        margin-bottom: 10px;
      }
      
      .slide-title {
        font-size: 14px;
      }
      
      .slide-description {
        font-size: 12px;
      }
      
      .otp-digit {
        width: 45px;
        height: 55px;
        font-size: 18px;
      }
      
      .btn {
        padding: 14px;
        font-size: 14px;
      }
    }