  body {
      background: #1f2b6c;
      /* Dark Blue */
      color: #fff;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      
    }

    .auth-wrapper {
      max-width: 900px;
      width: 100%;
    }

    .logo-row {
      display: flex;
      justify-content: center;
      gap: 50px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .logo-row img {
      max-width: 180px;
      max-height: 80px;
      object-fit: contain;
      filter: drop-shadow(0 0 5px rgba(255 255 255 / 0.3));
    }

    .auth-card {
      background-color: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
      /* Remove flex here, because tabs on top and forms below */
      color: #1f2b6c;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Tab buttons - custom styling */
    .nav-tabs {
      border-bottom: none;
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 25px;
      /* full width not needed here */
      width: 100%;
    }

    .nav-tabs .nav-link {
      font-weight: 600;
      color: #1f2b6c;
      border: 2px solid #1f2b6c;
      border-radius: 0.75rem;
      text-align: center;
      padding: 10px 25px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .nav-tabs .nav-link.active {
      background-color: #f7941e;
      /* Orange */
      color: #fff;
      border-color: #f7941e;
      box-shadow: 0 4px 12px rgba(247, 148, 30, 0.6);
    }

    /* Form container */
    .tab-content {
      position: relative;
      min-width: 280px;
    }

    /* Form style */
    form {
      color: #1f2b6c;
    }

    .form-label {
      font-weight: 600;
      color: #1f2b6c;
    }

    .form-control {
      border: 2px solid #1f2b6c;
      border-radius: 0.5rem;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      box-shadow: none;
    }

    .form-control:focus {
      border-color: #f7941e;
      box-shadow: 0 0 8px rgba(247, 148, 30, 0.5);
      outline: none;
    }

    .btn-primary {
      background-color: #1f2b6c;
      border-color: #1f2b6c;
      font-weight: 600;
      padding: 10px;
      border-radius: 0.5rem;
      transition: background-color 0.3s ease;
    }

    .btn-primary:hover {
      background-color: #f7941e;
      border-color: #f7941e;
    }

    .btn-orange {
      background-color: #f7941e;
      color: #fff;
      border: none;
      font-weight: 600;
      padding: 10px;
      border-radius: 0.5rem;
      transition: background-color 0.3s ease;
    }

    .btn-orange:hover {
      background-color: #d67b09;
    }

    /* Links */
    a {
      cursor: pointer;
      color: #1f2b6c;
      font-weight: 600;
    }

    a:hover {
      color: #f7941e;
      text-decoration: underline;
    }

    /* Animation for tab panes */
    .tab-pane {
      opacity: 0;
      transform: translateY(15px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
    }

    .tab-pane.active.show {
      opacity: 1;
      transform: translateY(0);
      position: relative;
      pointer-events: auto;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .auth-card {
        padding: 25px 20px;
      }

      .nav-tabs {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
        gap: 15px;
      }

      .nav-tabs .nav-link {
        margin-bottom: 0;
        border-radius: 0.75rem;
        flex: 1;
        padding: 10px 15px;
      }

      .tab-content {
        position: relative;
        min-width: auto;
      }

      .tab-pane {
        position: relative;
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
      }
    }

    .logo-row {
      display: flex;
      justify-content: center;
      gap: 50px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    @media (max-width: 768px) {
      .logo-row {
        flex-wrap: nowrap !important;
      }
    }

    @media (max-width: 768px) {
      .logo-row img {
        max-width: 140px;
        max-height: 60px;
      }
    }
    .loginimg{
      height: 100px;
    } 
    .swal-custom-ok {
  background-color: #1f2b6c !important; /* Green */
  color: white !important;
  border: none;
  padding: 8px 24px;
  font-weight: 600;
  border-radius: 4px;
}
.swal-custom-ok:hover {
  background-color: #f7941e !important;
}
