* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background: linear-gradient(to top, #e2e2e2, #ffbd2f);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}

.container {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
}

.form-floating .form-control,
.form-floating .form-select {
  border-radius: 10px;
}

h3 {
  margin-bottom: 1.5rem;
}

button {
  margin-top: 1.5rem;
  border-radius: 10px;
  padding: 0.5rem 2rem;
  background-color: #007bff;
  border: none;
  color: white;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

.form-floating {
  .select2-container--bootstrap-5 {
    .select2-selection {
      height: calc(3.5rem + 2px);
      padding: 1rem 0.75rem;
      > .select2-selection__rendered {
        margin-top: 0.6rem;
        margin-left: 0;
        padding-left: 0;
      }
    }
  }
}
