* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #c8edfc;
  font-family: 'Arial', sans-serif;
}

.container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  min-height: 50vh;
  width: 45vh;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  color: #333;
}

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

form select,
button,
input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0.75rem;
  font-size: 1rem;
}

form input {
  border: 1px solid lightgray;
  font-size: 1rem;
  height: 3rem;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}

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

.dropdown i {
  font-size: 1.8rem;
  color: #af4d98;
  margin: 0 1.5rem;
  margin-top: 1.2rem;
}

.select-container {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  width: 120px;
}

.select-container img {
  max-width: 1.5rem;
  margin-right: 0.5rem;
}

.select-container select {
  border: none;
  background: transparent;
  font-size: 1rem;
  padding: 0;
  width: 100%;
  appearance: none;
}

.msg {
  display: flex;
  margin-top: 2.5rem;
  justify-content: center;
  font-size: 1.15rem;
  color: #333;
}

form button {
  height: 3rem;
  margin-top: 2.5rem;
  background-color: #af4d98;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #923a7c;
}

@media (max-width: 768px) {
  .container {
    width: 90vw;
    padding: 1.5rem;
  }

  .select-container {
    width: 140px;
  }

  form input {
    font-size: 0.9rem;
    height: 2.75rem;
  }

  .dropdown i {
    font-size: 1.6rem;
    margin: 0 1rem;
  }
}
