/* Only apply these styles to the login page */
body.login_admin {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

body.login_admin::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://candsportal.co.za/bg-stuff.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

body.login_admin .authentication-form-wrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 40%;
  height: 100vh;
  max-width: none;
  margin: 0;
  padding-top: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(13, 17, 23, 0.5);
  color: white;
  z-index: 2;
  overflow-y: auto;
}

body.login_admin .company-logo {
  display: flex;
  justify-content: center;
}

body.login_admin .authentication-form-wrapper > div:nth-child(2) {
display: none;
}

body.login_admin .authentication-form-wrapper h1 {
  font-size: 3rem !important;
  font-weight: bold !important;
  color: white !important;
  margin-bottom: 0.75rem !important;
  text-align: left !important;
}

body.login_admin .authentication-form-wrapper p {
  font-size: 1.125rem !important;
  color: #f0f0f0 !important;
  text-align: left !important;
  margin-bottom: 0 !important;
}

body.login_admin .tw-bg-white {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 2rem !important;
  margin: 0 !important;
}

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

body.login_admin .form-group label {
  color: white !important;
  font-size: 0.9rem !important;
  display: block;
  margin-bottom: 0.5rem !important;
}

body.login_admin .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  background-color: rgba(26, 31, 41, 0.7);
  border: 1px solid #2d3748;
  color: white;
  outline: none;
  box-sizing: border-box;
  height: auto;
}

body.login_admin .form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.25);
}

body.login_admin .text-muted {
  color: #f0f0f0 !important;
  text-decoration: none;
  font-size: 0.875rem;
}

body.login_admin .text-muted:hover {
  text-decoration: underline;
}

body.login_admin .g-recaptcha {
  display: none;
}

body.login_admin .checkbox.checkbox-inline {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

body.login_admin .checkbox.checkbox-inline input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  accent-color: #2196f3;
}

body.login_admin .checkbox.checkbox-inline label {
  font-size: 0.875rem;
  color: #f0f0f0;
}

body.login_admin .btn-primary {
  background-color: #2196f3 !important;
  border: none !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 0.75rem !important;
  border-radius: 0.375rem !important;
  width: 100% !important;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 1.5rem !important;
}

body.login_admin .btn-primary:hover {
  background-color: #1e88e5 !important;
}

@media (max-width: 768px) {
  body.login_admin .authentication-form-wrapper {
    width: 100%;
  }
}