body{
    background-color: rgb(141, 205, 232);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container{
    background-color: white;
    border-radius: 5%;
    padding: 10px;
}
.container h2{
    margin: 5px;
}
form select, button, input{
    width: 100%;
    border: none;
    outline: none;
}
form input{
    border: 1px solid black;
    border-radius: 5px;
    min-height: 30px;
    font-size: x-large;
}
.amount h3{
    font-size: 20px;
    margin-bottom: 0.5rem;
    margin-top: 10px;
}
.dropdown{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.select-container img{
  height: 50%;
  width: 60%;

}

.dropdown p{
    font-size: large;
    font-weight: bold;
   margin-bottom: 0;
}
.dropdown i{
    margin-top: 15px;
    margin-left: -15px;
    font-size: x-large;
}
.select-container select{
    border: 1px solid black;
    border-radius: 5px;
    margin: 0;
    min-height: 25px;
    font-weight: bold;
}
.Msg{
  font-size: x-large;
  font-weight: bold;
  margin: 10px;
  text-align: center;
  border-top: 1px solid black;
  border-bottom: 1px solid black;

}
form button{
    background-color: rgb(141, 205, 232);
    min-height: 40px;
    border-radius: 5px;
    font-weight: bold;
    font-family: sans-serif;
    border: 1px solid black;
}