.auth-container {
  display: flex;
  height: 100vh;
}

.auth-left {
  flex: 1;
  background: #1a56db;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.auth-right {
  flex: 1;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.auth-card {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.auth-title {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  color: #6b7280;
  margin-bottom: 2rem;
}

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
}

.btn-primary {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.btn-primary:hover {
  background-color: #1e40af;
}

.auth-links {
  text-align: center;
}

.auth-links a {
  color: var(--primary-color);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.onboarding-container {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.onboarding-section {
  margin-bottom: 2rem;
}

.onboarding-section h3 {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.input-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2;
}

.input-error:focus {
  outline-color: #ef4444;
}
