
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.form-container {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-container input[type="email"],
.form-container input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.role-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.role-buttons button {
  flex: 1;
  margin-right: 10px;
  padding: 10px;
  background-color: #fff;
  color: #f5b041;
  border: 2px solid #f5b041;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.role-buttons button:last-child {
  margin-right: 0;
}

.role-buttons button:hover {
  background-color: #fff9e5;
  color: #f5b041;
}

.role-buttons button.selected {
  background-color: #f5b041;
  color: #fff;
  border: 2px solid #f5b041;
  box-shadow: 0 0 0 2px #f5b04133;
}

.error-message {
  color: red;
  margin: 10px 0;
  font-weight: bold;
}

.alert-success {
  text-align: center;
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  margin: 15px auto;
  width: 90%;
  border-radius: 4px;
}

.form-container a {
  margin-bottom: 10px;
  color: #007BFF;
  text-align: right;
  text-decoration: none;
}

.form-container button[type="submit"] {
  width: 100%;
  padding: 12px;
  background: #f5b041;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 15px;
}

.form-container p {
  text-align: center;
  margin-top: 15px;
}

.form-container p a {
  color: #f5b041;
  font-weight: bold;
}

