.auth-container {
  max-width: 100%;
  padding: 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  background-color: #ffffff;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #1a1a1a;
}

.auth-form {
  width: 100%;
  max-width: 320px;
}

.email-step, .auth-options {
  width: 100%;
}

.form-group {
  margin-bottom: 16px;
  width: 100%;
}

.email-input, .password-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.email-input:focus, .password-input:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.email-input:disabled {
  background-color: #f9fafb;
  color: #4b5563;
  cursor: not-allowed;
}

.auth-button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-bottom: 12px;
}

.continue-button {
  background-color: #2563eb;
  color: white;
}

.continue-button:disabled {
  background-color: #93c5fd;
  cursor: not-allowed;
}

.secondary-button {
  background-color: #f3f4f6;
  color: #1a1a1a;
}

.google-button {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.google-button:hover {
  background-color: #f9fafb;
}

.text-button {
  background: none;
  border: none;
  color: #2563eb;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

.text-button:hover {
  text-decoration: underline;
}

.back-option {
  text-align: center;
  margin-top: 16px;
}

.auth-link {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #6b7280;
}

.auth-link a {
  color: #2563eb;
  text-decoration: none;
}

.auth-link a:hover {
  text-decoration: underline;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0;
  color: #6b7280;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.divider span {
  padding: 0 10px;
  font-size: 14px;
}

.success-message {
  text-align: center;
  padding: 16px;
  background-color: #ecfdf5;
  border-radius: 8px;
  color: #065f46;
}

.forgot-password {
  text-align: right;
  margin-bottom: 16px;
  font-size: 14px;
}

.error-messages {
  background-color: #fee2e2;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
}

.error-message {
  color: #b91c1c;
  margin: 0;
  font-size: 14px;
}

/* Mobile optimizations */
@media (max-width: 480px) {
  .auth-container {
    padding: 16px;
  }

  .auth-form {
    max-width: 100%;
  }

  .auth-button {
    padding: 14px;
  }
}
