:root {
      --primary-color: #4CAF50;
      --dark-color: #2E7D32;
      --light-color: #F1F8E9;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #fff;
      margin: 0;
      padding: 0;
    }

    .auth-wrapper {
      min-height: 100vh;
      display: flex;
      overflow: hidden;
      position: relative;
    }

   
    .auth-wrapper::before {
      content: '';
      position: absolute;
      top: -60px;
      left: 0;
      width: 100%;
      height: 120px;
      background-color: white;
      border-bottom-left-radius: 100% 60px;
      border-bottom-right-radius: 100% 60px;
      z-index: 1;
    }

    .auth-left {
      flex: 1;
      background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
      color: white;
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;  
      position: relative;
      z-index: 2;
      border-bottom-right-radius: 100px;
      border-top-right-radius: 100px;
      text-align: left;  
    }

    .logo-area {
      display: flex;
      align-items: center;
      margin-bottom: 60px;
      width: 100%;
      justify-content: flex-start;
      padding-left: 0;  
    }

    .logo-area img {
      height: 75px;  
      margin-right: 30px;  
    }

    .logo-area span {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.2;
    }

    .logo-area small {
      font-size: 0.9rem;
      display: block;
    }

    .auth-left h2 {
      font-weight: 700;
      font-size: 2.2rem;
      margin-bottom: 30px;
      max-width: 85%;
      margin-left: 0;  
      margin-right: 0;  
    }

    .auth-left p {
      font-size: 1.1rem;
      line-height: 1.7;
      max-width: 75%;
      margin-left: 0;  
      margin-right: 0;  
      margin-bottom: 40px;
    }

    .auth-left img.illustration {
      width: 100%;
      max-width: 480px;  
      margin-top: 20px;  
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .auth-right {
      flex: 1;
      background: url("asset/Masukd.png") center center/cover no-repeat; 
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      z-index: 2;
    }

    .auth-card {
      background: white;
      border-radius: 25px;
      padding: 40px;  /* Increased from 30px */
      width: 100%;
      max-width: 480px;  /* Increased from 420px */
      box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.05),
        0 8px 20px rgba(0, 0, 0, 0.05),
        0 12px 30px rgba(0, 0, 0, 0.05);
    }

    .tabs {
      display: flex;
      margin-bottom: 30px;
      border-bottom: 2px solid #eee;
    }

    .tab-btn {
      flex: 1;
      background: none;
      border: none;
      padding: 15px;
      font-weight: 600;
      font-size: 1.1rem;
      color: #6c757d;  /* Bootstrap's text-secondary color */
      text-decoration: none;
      position: relative;
      transition: all 0.3s ease;
      cursor: pointer;
      border-bottom: 3px solid transparent;
    }

    .tab-btn:hover {
      color: var(--primary-color);
      text-decoration: none;
    }

    .tab-btn.active {
      color: var(--primary-color);
      border-bottom: 3px solid var(--primary-color);
    }

    .form-label {
      font-weight: 500;
      font-size: 1rem;
      margin-bottom: 8px;  
    }

    .form-control {
      padding: 12px 16px; 
      font-size: 1rem;
      border-radius: 8px; 
    }

    .color-primary {
      color: var(--primary-color);
    }

    .mb-3 {
      margin-bottom: 1.5rem !important;
    }

    .form-check-label {
      font-size: 0.95rem;
    }

    .forget-password {
      font-size: 0.90rem;
      color: var(--primary-color);
      text-decoration: none;
    }

    .btn-primary {
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }
    
    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary.active,
    .btn-primary:active:focus {
      background-color: var(--dark-color) !important;
      border-color: var(--dark-color) !important;
      color: white !important;
      transform: scale(0.98);
      box-shadow: none !important;
    }

    /* Override Bootstrap's focus state */
    .btn-primary:focus-visible {
      box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25) !important;
    }

    .text-center small {
      font-size: 0.95rem;
      margin-top: 1.5rem;  /* Increased top margin */
      display: block;
    }

    @media (max-width: 992px) {
      .auth-wrapper {
        flex-direction: column;
      }

      .auth-left {
        text-align: left;  /* Keep left alignment on mobile */
        align-items: flex-start;
        border-radius: 0 0 60px 60px;
      }

      .logo-area {
        padding-left: 0;  /* Remove padding on mobile */
        justify-content: flex-start;  /* Keep left alignment on mobile */
      }

      .auth-left p {
        max-width: 100%;
      }

      .auth-left img.illustration {
        max-width: 90%;  /* Make image responsive on mobile */
      }
    }

    /* Add responsive adjustments */
    @media (max-width: 576px) {
      .auth-card {
        padding: 30px;
        max-width: 100%;
      }
    }