  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Montserrat', sans-serif;
      overflow-x: hidden;
  }

  /* Video Background */
  .video-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: -1;
  }

  .video-background video {
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      object-fit: cover;
  }

  .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(2, 20, 41, 0.7);
  }

  /* Navigation */
  .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 1rem 2rem;
      z-index: 100;
  }

  .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .nav-brand-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.05);
      padding: 0.75rem 1.5rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .logo-group img {
      height: 40px;
      width: auto;
  }

  .nav-divider {
      width: 1px;
      height: 30px;
      background: rgba(255, 255, 255, 0.2);
  }

  .welcome-text {
      display: flex;
      flex-direction: column;
  }

  .welcome-greeting {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 300;
  }

  .company-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      color: #fff;
      font-weight: 600;
  }

  .nav-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.05);
      padding: 0.75rem 1.25rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .nav-actions:hover {
      background: rgba(255, 255, 255, 0.1);
  }

  .nav-actions img {
      height: 24px;
      width: 24px;
      filter: brightness(0) invert(1);
  }

  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
  }

  .mobile-menu-toggle span {
      width: 25px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
  }

  .mobile-nav-brand {
      display: none;
  }

  /* Login Container */
  .login-container {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem;
      padding-top: 120px;
  }

  .login-card {
      background: rgba(2, 20, 41, 0.80);
      backdrop-filter: blur(10px);
      border-radius: 32px;
      padding: 3rem 2.5rem;
      width: 600px;
      height: 408px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .login-header {
      text-align: center;
      margin-bottom: 2rem;
  }

  .login-header h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.75rem;
      color: #fff;
      font-weight: 600;
      margin-bottom: 0.5rem;
  }

  .form-group {
      margin-bottom: 1.5rem;
  }

  .phone-input-group {
      display: flex;
      gap: 0.75rem;
  }

  .country-code {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      padding: 0.875rem 1rem;
      color: #fff;
      font-size: 0.95rem;
      cursor: pointer;
      min-width: 140px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .country-code option {
      background: #021429;
      color: #fff;
  }

  .country-code:focus {
      outline: none;
      border-color: #4A90E2;
      background: rgba(74, 144, 226, 0.1);
  }

  .phone-input {
      flex: 1;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      padding: 0.875rem 1rem;
      color: #fff;
      font-size: 0.95rem;
      transition: all 0.3s ease;
  }

  .phone-input::placeholder {
      color: rgba(255, 255, 255, 0.4);
  }

  .phone-input:focus {
      outline: none;
      border-color: #4A90E2;
      background: rgba(74, 144, 226, 0.1);
  }

  .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
  }

  .checkbox-group input[type="checkbox"] {
      margin-top: 0.25rem;
      cursor: pointer;
      width: 18px;
      height: 18px;
      accent-color: #4A90E2;
  }

  .checkbox-group label {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.875rem;
      line-height: 1.5;
      cursor: pointer;
  }

  .checkbox-group a {
      color: #4A90E2;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .checkbox-group a:hover {
      color: #6AA9E8;
  }

  .btn {
      width: 100%;
      padding: 1rem;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      font-family: 'Montserrat', sans-serif;
  }

  .btn-primary {
      display: flex;
      height: 56px;
      padding: 17px 152px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 16px;
      background: linear-gradient(269deg, #FFF 0.17%, #76BBFF 99.83%);
      color: #021429;
      margin: 0 auto 1rem;
      font-weight: 500;
      letter-spacing: 0.5px;
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(118, 187, 255, 0.4);
  }

  .btn-secondary {
      display: flex;
      height: 56px;
      padding: 17px 152px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 16px;
      border: 1px solid #3B5767;
      background: transparent;
      color: rgba(255, 255, 255, 0.8);
      margin: 0 auto;
  }

  .btn-secondary:hover {
      background: rgba(59, 87, 103, 0.1);
      color: #fff;
      border-color: #4A6B7D;
  }

  /* WhatsApp Button */
  .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      transition: all 0.3s ease;
      text-decoration: none;
      color: #fff;
  }

  .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  }

  .whatsapp-float svg {
      width: 34px;
      height: 34px;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
      .navbar {
          padding: 0.75rem 1rem;
      }

      .nav-brand-card {
          display: none;
      }

      .nav-actions {
          display: none;
      }

      .mobile-nav-brand {
          display: flex;
          align-items: center;
          gap: 0.75rem;
      }

      .mobile-logo-group img {
          height: 32px;
      }

      .mobile-nav-divider {
          width: 1px;
          height: 24px;
          background: rgba(255, 255, 255, 0.2);
      }

      .mobile-welcome-text {
          display: flex;
          flex-direction: column;
      }

      .mobile-welcome-greeting {
          font-size: 0.65rem;
          color: rgba(255, 255, 255, 0.7);
      }

      .mobile-company-name {
          font-family: 'Montserrat', sans-serif;
          font-size: 0.95rem;
          color: #fff;
          font-weight: 600;
      }

      .mobile-menu-toggle {
          display: flex;
      }

      .login-container {
          padding-top: 100px;
      }

      .login-card {
          padding: 2rem 1.5rem;
          width: 95%;
          max-width: 500px;
          height: auto;
      }

      .btn-primary,
      .btn-secondary {
          width: 100%;
      }

      .login-header h1 {
          font-size: 1.5rem;
      }

      .whatsapp-float {
          bottom: 20px;
          right: 20px;
          width: 50px;
          height: 50px;
      }

      .whatsapp-float svg {
          width: 28px;
          height: 28px;
      }
  }

  @media (max-width: 480px) {
      .country-code {
          width: 100%;
      }

      .yh-trigger-left {
          gap: 3px !important;
      }
  }



  /* Signup Container */
  .signup-container {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem;
      padding-top: 120px;
  }

  .signup-card {
      background: rgba(2, 20, 41, 0.80);
      backdrop-filter: blur(10px);
      border-radius: 32px;
      border: 1px solid rgba(255, 255, 255, 0.40);
      padding: 2.5rem 2.5rem;
      width: 600px;
      height: 638px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .signup-header {
      text-align: center;
      margin-bottom: 1.5rem;
  }

  .signup-header h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.75rem;
      color: #fff;
      font-weight: 600;
  }


  .form-input {
      width: 100%;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      padding: 0.875rem 1rem;
      padding-right: 2.5rem;
      color: #fff;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      height: 56px;
  }

  .form-group {
      margin-bottom: 20px;
      position: relative;
      border-radius: 12px;
      overflow: hidden;
  }

  .form-group::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 1px;
      border-radius: inherit;

      background: linear-gradient(180deg,
              rgba(255, 255, 255, .40) 0%,
              rgba(255, 255, 255, .10) 40%,
              rgba(255, 255, 255, 0) 100%);

      -webkit-mask:
          linear-gradient(#000 0 0) content-box,
          linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;

      pointer-events: none;
      z-index: 1;
  }

  .form-group::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
      pointer-events: none;
      z-index: 1;
  }

  .form-input::placeholder {
      color: rgba(255, 255, 255, 0.4);
  }

  .form-input:focus {
      outline: none;
      border-color: #4A90E2;
      background: rgba(74, 144, 226, 0.1);
  }

  .input-icon {
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      opacity: 0.5;
  }

  .date-input-wrapper {
      position: relative;
  }

  input[type="date"] {
      appearance: none;
      -webkit-appearance: none;
      color-scheme: dark;
  }

  input[type="date"]::-webkit-calendar-picker-indicator {
      filter: invert(1);
      opacity: 0.5;
      cursor: pointer;
  }

  .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
  }

  .checkbox-group input[type="checkbox"] {
      margin-top: 0.25rem;
      cursor: pointer;
      width: 18px;
      height: 18px;
      accent-color: #4A90E2;
  }

  .checkbox-group label {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.875rem;
      line-height: 1.5;
      cursor: pointer;
  }

  .checkbox-group a {
      color: #4A90E2;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .checkbox-group a:hover {
      color: #6AA9E8;
  }

  .btn {
      width: 100%;
      padding: 1rem;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      font-family: 'Montserrat', sans-serif;
  }

  .btn-primary {
      display: flex;
      height: 56px;
      padding: 17px 152px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 16px;
      background: linear-gradient(269deg, #FFF 0.17%, #76BBFF 99.83%);
      color: #021429;
      margin: 0 auto 1rem;
      font-weight: 500;
      letter-spacing: 0.5px;
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(118, 187, 255, 0.4);
  }

  .btn-secondary {
      display: flex;
      height: 56px;
      padding: 17px 152px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 16px;
      border: 1px solid #3B5767;
      background: transparent;
      color: rgba(255, 255, 255, 0.8);
      margin: 0 auto;
  }

  .btn-secondary:hover {
      background: rgba(59, 87, 103, 0.1);
      color: #fff;
      border-color: #4A6B7D;
  }

  /* WhatsApp Button */
  .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      transition: all 0.3s ease;
      text-decoration: none;
      color: #fff;
  }

  .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  }

  .whatsapp-float svg {
      width: 34px;
      height: 34px;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
      .navbar {
          padding: 0.75rem 1rem;
      }

      .nav-brand-card {
          display: none;
      }

      .nav-actions {
          display: none;
      }

      .mobile-nav-brand {
          display: flex;
          align-items: center;
          gap: 0.75rem;
      }

      .mobile-logo-group img {
          height: 32px;
      }

      .mobile-nav-divider {
          width: 1px;
          height: 24px;
          background: rgba(255, 255, 255, 0.2);
      }

      .mobile-welcome-text {
          display: flex;
          flex-direction: column;
      }

      .mobile-welcome-greeting {
          font-size: 0.65rem;
          color: rgba(255, 255, 255, 0.7);
      }

      .mobile-company-name {
          font-family: 'Montserrat', sans-serif;
          font-size: 0.95rem;
          color: #fff;
          font-weight: 600;
      }

      .mobile-menu-toggle {
          display: flex;
      }

      .signup-container {
          padding-top: 100px;
      }

      .signup-card {
          padding: 2rem 1.5rem;
          width: 95%;
          max-width: 500px;
          height: auto;
      }

      .btn-primary,
      .btn-secondary {
          width: 100%;
          padding: 17px 20px;
      }

      .signup-header h1 {
          font-size: 1.5rem;
      }

      .whatsapp-float {
          bottom: 20px;
          right: 20px;
          width: 50px;
          height: 50px;
      }

      .whatsapp-float svg {
          width: 28px;
          height: 28px;
      }
  }

  @media (max-width: 480px) {
      .form-group {
          margin-bottom: 1rem;
      }
  }

  .loginForm {
      padding: 0px 30px 30px 30px;
  }