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

html,body{
    width: 100%;
    height: 100%;
}   

body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#f4e4ba;
}

h2{
    font-size:29px;
    text-align: center;
}

.container{
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 350px;
    margin-bottom: 8.1rem;
}



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

form input,
select,
button{
    width: 100%;
    outline: none;
    border-radius: 6px;
    border: none;
}

.amount{
    font-size: 1.3rem;
}

form input{
    border: 1px solid lightgrey;
    height: 3rem;
    padding-left: 0.7rem;
    margin-top: 0.3rem;
    font-size: 1.2rem ;
}

select{
    font-size: 1rem;
    padding: 5px;
}

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

i{
    font-size: 1.5rem;
    margin-top: 1.4rem;
}

img{
width: 2.2rem;
margin-left: 7px;
}

.selector-container{
    margin-top: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    border:1px solid lightgrey;
    border-radius: 0.5rem ;
}

.msg{
    font-size: 1.3rem;
    margin: 1.8rem 0 1.8rem 0;
    text-align: center;
}

form button{
    background-color: #d35393;
    height: 3rem;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}