:root {
  --primary: #1e3a8a;
  --primary-light: #3b82f6;
  --secondary: #475569;
  --accent: #f0f9ff;
  --success: #16a34a;
  --light: #f8fafc;
  --dark: #0f172a;
  --gold: #ffd700;
  --green: #1b7a4b;
}

body {
  background-color: var(--light);
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.auth-container {
  min-height: 100vh;
}

.auth-wrapper {
  max-width: 1100px;
}

.auth-banner {
  background: linear-gradient(135deg, white 0%, var(--green) 100%);
  color: white;
  border-radius: 16px 0 0 16px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

@media (max-width: 991px) {
  .auth-banner {
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
  }
}

.auth-form-container {
  background-color: white;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .auth-form-container {
    border-radius: 0 0 16px 16px;
  }
}

.auth-form {
  padding: 2.5rem;
}

.tab-content {
  margin-top: 1.5rem;
}

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

.auth-tab {
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--light-text);
  cursor: pointer;
  position: relative;
  background: transparent;
  border: none;
  margin-right: 1.5rem;
}

.auth-tab.active {
  color: var(--green);
}

.auth-tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.btn-primary {
  background-color: var(--green);
  border-color: var(--green);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--gold);
  border-color: var(--gold);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.security-info {
  display: flex;
  align-items: center;
  color: var(--secondary);
  font-size: 0.875rem;
}

.security-info i {
  font-size: 1.125rem;
  color: var(--success);
  margin-right: 0.5rem;
}

.logo {
  width: 250px;
  margin-bottom: 1rem;
}

.banner-text {
  margin-top: auto;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.feature-list li i {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  font-size: 0.75rem;
}

.text-muted {
  color: var(--secondary) !important;
}

.footer-links a {
  color: var(--green);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Password toggle styles */
.password-input-group {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.password-toggle:hover {
  color: var(--primary);
}

.password-toggle:focus {
  outline: none;
  color: var(--primary);
}

.password-input-group .form-control {
  padding-right: 45px;
}