/* auth.css: Styles for login and signup pages */
body {
  background: #fdf4ea;
}
.auth-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.auth-title {
  font-family: 'Nunito', sans-serif;
  color: #1F5F4A;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2E2E2E;
  font-weight: 500;
  text-align: left;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  background: #F9FAFB;
  font-size: 1rem;
}
.auth-btn {
  width: 100%;
  padding: 0.85rem 0;
  background: #E4572E;
  color: #f5a40c;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 1rem;
}
.auth-btn:hover {
  background: #c13d13;
}
.auth-link {
  display: block;
  text-align: center;
  color: #4DA8DA;
  text-decoration: none;
  margin-top: 1rem;
  font-size: 0.98rem;
}
.auth-link:hover {
  text-decoration: underline;
}
.auth-error {
  color: #E4572E;
  background: #FFF0EB;
  border-radius: 0.5rem;
  padding: 1.25rem 2rem;
  margin: 0.5rem 0;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.alert-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
