* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f4e4ba, #e0c3fc);
  padding: 1rem;
}

.container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

input {
  border: 1px solid #ccc;
  padding: 0.75rem;
}

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

.dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.select-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: #f9f9f9;
}

.select-container img {
  width: 1.8rem;
  height: 1.2rem;
  object-fit: cover;
  border-radius: 0.2rem;
}

.select-container select {
  background: transparent;
  font-weight: 500;
  cursor: pointer;
}

i.fas {
  font-size: 1.5rem;
  color: #af4d98;
}

.msg {
  text-align: center;
  color: #333;
  font-weight: 500;
}

button {
  height: 3rem;
  background-color: #af4d98;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #932c7c;
}

@media (max-width: 480px) {
  .dropdown {
    flex-direction: column;
    gap: 1rem;
  }
}
