:root {
  --primary-orange: #800000;
  --background: #fafafa;
  --text-dark: #333;
  --text-light: #777;
  --bg-gradient: linear-gradient(135deg, #ffeeee 0%, #ffffff 100%);
  --card-bg-color: #ffffff; /* White card background */
  --card-border-color: #e0e0e0; /* Subtle border color */
  --hover: #e48989;
  --dark: #363535;
}

.auth-container {
  background: white;
  width: 100%;
  max-width: 420px;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.auth-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
  color: #222;
}

.auth-input {
  margin-bottom: 16px;
}

.auth-input label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

.auth-input input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font-size: 15px;
}

.auth-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 1.08rem;
}

.auth-footer a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
}

.headline {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}

.sign-in {
  text-decoration: none;
  color: var(--dark);
  margin-right: 20px;
  font-weight: 600;
}
.sign-in:hover {
  color: var(--primary-color);
}

.tagline {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* pop up sign up*/
/* Toast notification */
#toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
  transform: translateX(-50%);
  word-wrap: break-word;
}
#toast.show {
  visibility: visible;
}
@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 20px;
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    top: 20px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
