.auth-title {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f7f7f7;
}

.auth-title h2 {
  font-size: 2rem;
  color: #333;
  margin: 0;
}

.auth-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.auth-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.auth-form h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #0073e6;
}

.auth-form label {
  margin-top: 1rem;
  font-weight: bold;
  color: #333;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
  padding: 0.6rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-actions {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-actions button {
  background-color: #0073e6;
  color: white;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-actions button:hover {
  background-color: #005bb5;
}

.form-actions .remember {
  font-size: 0.9rem;
  color: #555;
}

.link {
  margin-top: 1rem;
  text-align: right;
}

.link a {
  color: #0073e6;
  text-decoration: none;
}

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

.alert.error {
  background: #ffe6e6;
  color: #cc0000;
  padding: 1rem;
  border-left: 4px solid #cc0000;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-weight: bold;
  max-height: 4rem;
}
