*{
    margin: 0px;
    padding: 0px;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #264653;
}

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

form {
  margin: 2rem 0 1rem 0;
}
form select, .btn, input{
    width: 100%;
    border: none;
    border-radius: 0.75rem;
    outline: none;
}
form input{
    font-size: 1.2rem;
    border: 1px solid lightgray;
    height: 3rem;
    padding-left: 1rem;
}
.dropdown{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}
.dropdown i{
    font-size: 1.5rem;
    margin-top: 1rem;
}
.select-container img{
    max-width: 3rem;
}
.select-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 9rem;
    border-radius: 0.5rem;
    /* background-color: #005f73; */
    border: 1px solid lightgray;
}
.select-container select{
    font-size: 1.2rem;
    width: auto;
}
.msg{
    margin: 1.5rem 0 1.5rem 0;
    text-align: center;
    font-size: 1.5rem;
}
form .btn{
    height: 3rem;
    background-color: #4a5759;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
p{
    font-size: 1.5rem;
}
h2{
    font-size: 1.5rem;
    text-align: center;
}

@media (max-width: 600px) {
  .container {
    width: 90%;
    min-height: auto;
    padding: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1.1rem;
  }

  form input {
    font-size: 1rem;
    height: 2.8rem;
  }

  .dropdown {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .dropdown i {
    transform: rotate(90deg);
    margin: 0.5rem auto;
  }

  .select-container {
    width: 100%;
  }

  .msg {
    font-size: 1.2rem;
  }

  form .btn {
    font-size: 1.2rem;
    height: 2.8rem;
  }
}