body {
  font-family: "Outfit", sans-serif;
  font-size: 0.9em;
  font-weight: 300;
  text-align: center;
  background-color: #E9EFF3;
  margin: 0;
  color: rgb(26, 8, 46);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0 20px;
}

h1 {
    font-weight: 400;
    color: #4AB3DD;
}

.container {
  background: white;
  padding: 4em;
  border-radius: 2em;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
}

.dropdown-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.dropdown-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dropdown-group label {
  font-weight: 600;
  margin-bottom: 5px;
}

.powered-by {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: rgb(26, 8, 46);
  background: none; /* Remove any unwanted background */
  padding: 5px 10px;
}

select {
  appearance: none;
  background-color: white;
  color: rgb(26, 8, 46);
  font-family: "Outfit", sans-serif;
  padding: 10px 30px;
  border: 2px solid #9247e2;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  outline: none;
  margin: 5px;
}

.logo {
  max-width: 200px;
  height: auto;
}

.btn {
  outline: none;
  cursor: pointer;
  padding: 10px 30px;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  background-color: transparent;
  color: #9247e2;
  border: 2px solid #9247e2;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #9247e2;
  color: white;
  box-shadow: 0 0 2em #9247E2;
}

.helper-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(100, 100, 100, 0.6);
  margin-top: 10px;
}
