body {
  margin: 0;
  padding: 0;
  font-family: 'Fira Sans', sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.background-container {
  background-image: url('https://hais.muteup.org/Main/Includes/Uploads/Backgrounds/HAIS-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
}

.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  width: 30%;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 50%;
}

.form-container h2 {
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 98%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin: 0 auto;
}

button {
  width: 20%;
  padding: 10px;
  padding-top: 10px;
  background-color: #3A8BCA;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 auto;
  display: block;
  text-align: center;
}

button:hover {
  background-color: #0056b3;
}

.or {
  text-align: center;
  margin: 20px 0;
}

.switch-page {
  text-align: center;
}

.switch-page a {
  text-decoration: none;
  color: #fff;
}

.switch-page a:hover {
  text-decoration: underline;
}

.login-button {
  padding: 10px 20px;
  background-color: #28a745;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #218838;
}