*{
    border: 0;
    margin: 0;
    font-family:"Roboto","Arial","Helvetica Neue", "Helvetica",  sans-serif ;
    font-weight: 600;

}

body{
    background: radial-gradient(ellipse at top, #e7c6ff, transparent),
    radial-gradient(ellipse at bottom, #c8b6ff, transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

.container{
    background-color: #ffd6ff;
    box-shadow: 0 0 1rem rgb(0,0,0,0.3);
    min-width:40vw ;
    min-height: 70vh;
    border-radius: 1rem;
    padding: 2rem;

}

.form{
    margin: 2rem 0 1rem 0;
}
h2{
    text-align: center;
}


.container select,button,input{
    background-color: #ffd6ff;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 0.75rem;
}
.input-text p{
    margin-bottom: 1rem;
    font-size: large;
}

.dropdown p{
    padding-bottom: 1.5rem;
}
.form input{
    /* border: 1px solid lightgray; */
    box-shadow: 0 0 1rem rgb(0,0,0,0.2);
    font-size: 1rem;
    height: 3rem;
    padding-left: 0.5rem;
    transition: all 0.1s ease-in;
    
}

.form input:hover{
    box-shadow: 0 0 1rem rgb(0,0,0,0.3);
}
.select-container{
    box-shadow: 0 0 1rem rgb(0,0,0,0.2);
}

.amount{
    margin-bottom: 5rem;
}
.dropdown{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 5rem;
}

img{
    max-width: 2rem;
}


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

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


  .msg{
    margin-bottom: 3rem;
    text-align: center;
  }

  button{
    margin-top: 3rem;
    height: 4rem;
    width:99%;
    border:1.5px solid #183153;
    border-bottom: 5px solid #183153;
    border-radius: 8px;
    background-color: #be95c4;
    cursor: pointer;
    color: #183153;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 0 1rem rgb(0,0,0,0.2);
    transition: all 0.1s ease-in;
  }


  button:hover{
    background-color:#9f86c0;
    box-shadow: 0 0 1rem rgb(0,0,0,0.3);
  }
