* {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #d2e055;
}

.container {
  padding: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  min-height: 50vh;
  width: 45vh;
}

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

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

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

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

.drop-down i {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.select-con {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  border-radius: 0.5rem;
  border: 1px solid lightgray;
  padding-left: 0.2rem;
}

img {
  max-width: 2rem;
}

.select-con select {
  font-size: 1rem;
  width: auto;
}

p {
  font-size: 1.25rem;
}

h1 {
  font-size: 1.7rem;
}

.msg {
  font-size: 1.12rem;
  margin: 2rem 0 2rem 0;
  font-weight: 500;
}

button {
  height: 3rem;
  border: 1px solid lightgray;
  border-radius: 0.5rem;
  background-color: #af4d98;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}

@media (max-width: 361px) {
  .container {
    padding: 1.75rem;
    width: 80%;
  }
}

@media (orientation: landscape) and (max-height: 360px) {
  .container {
    padding: 2rem;
    width: 40vw;
  }
}
