
/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
  }

  /* Left Panel Styles */
  .bg-image {
    background-image: url('/images/cover.png');
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background: rgba(0, 0, 0, 0.5); */
  }

  .login-type-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 500px;
    z-index: 10;
  }

  .login-type-panel .card {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .login-heading {
    font-size: 1.75rem;
    font-weight: 600;
  }

  /* Login Options Styling */
  .login-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .login-option {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .login-option.active {
    border-color: #198754;
    background-color: rgba(25, 135, 84, 0.05);
  }

  .option-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
  }

  .login-option.active .option-icon {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
  }

  .form-check-input {
    opacity: 0;
    position: absolute;
  }

  .checked-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #198754;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }

  /* Right Panel Styles */
  .login-form-container {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
  }

  .btn-login {
    padding: 10px;
    font-weight: 500;
  }



  /* Form styling */
  .form-control, .input-group-text {
    padding: 0.75rem 1rem;
    border-color: #dee2e6;
  }

  .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(11, 90, 43, 0.25);
    border-color: #0b5a2b;
  }

  /* Links */
  a {
    color: #0b5a2b;
    text-decoration: none;
  }

  a:hover {
    color: #084621;
  }

  .btn-outline-success {
    color: #0b5a2b;
    border-color: #0b5a2b;
  }

  .btn-outline-success:hover {
    background-color: #0b5a2b;
    border-color: #0b5a2b;
  }

  /* Responsive adjustments */
  @media (max-width: 991.98px) {
    .bg-image {
      min-height: 50vh;
    }

    .login-form-container {
      padding: 2rem 1rem;
    }
  }
