* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: start;
  min-height: 100vh;
  background: rgb(231, 211, 203);
  padding-top: 50px;
}

.container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1.2rem;
  min-height: 45vh;
  width: 50vh;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.container:hover {
  transform: translateY(-5px);
}

h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

form {
  margin: 2rem 0 1rem 0;
}

form select,
button,
input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

form input {
  border: 1px solid #ddd;
  font-size: 1rem;
  height: 3rem;
  padding-left: 0.5rem;
}

form input:focus {
  border-color: #af4d98;
  box-shadow: 0 0 5px rgba(175, 77, 152, 0.5);
}

.dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.dropdown i {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #af4d98;
  transition: transform 0.3s ease;
}

.dropdown i:hover {
  transform: rotate(180deg);
}

.select-container img {
  max-width: 2rem;
  margin-right: 0.3rem;
}

.select-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
  padding: 0.3rem;
  background-color: #fafafa;
}

.select-container select {
  font-size: 1rem;
  width: auto;
  background: none;
  cursor: pointer;
}

.select-container select:hover {
  color: #af4d98;
}

.msg {
  margin: 2rem 0;
  font-weight: bold;
  color: #333;
  text-align: center;
}

form button {
  height: 3rem;
  background-color: sienna;
  color: white;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(175, 77, 152, 0.4);
}

form button:hover {
  background-color: #dc4a2d;
  transform: scale(1.05);
}