@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    background-color: aqua;
}
.container {
    width: min(60%, 28.12em);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.container *{
    border: none;
    outline: none;
}
.input-wraper{
    background-color: antiquewhite;
    padding: 1.87em 1.5em;
    border-radius: 10px;
    box-shadow: 0 0.93em 1.25em rgba(0, 0, 0, 0.3);
    margin-bottom: 3.12em;
    display: grid;
    grid-template-columns: 9fr 3fr;
    gap: 1em;
}
  button{
    font-weight: 500;
    border-radius: 0.13em;
}
input{
    background-color: #eeeeff ;
    color: #080808;
   padding: 1.2em 1.25em;
   font-size: 0.87em; 
}
button {
    color: black;
    background-color: aqua;
    cursor: pointer;
    font-size: 15px;
}
.date{
    cursor: pointer;
}
.out-wrapper{
   width: 100%;
   display: flex;
   justify-content: space-between;
}
.out-wrapper div{
     height: 6.25em;
     width: 6.25em;
     background-color: antiquewhite;
     border-radius: 10px;
     box-shadow: 0 0.93em 1.25em rgba(0, 0, 0, 0.3);
     display: grid;
     place-items: center;
     font-weight: 500;
     padding: 1.25em 0 ;
}
@media(max-width:420px){
    .container{
        width: min(70%, 28.12em); 
    }
    button{
        font-size: 10px;
        font-weight: 500;
        color: black; 
    }
    .out-wrapper div {
        height: 5em;
        width: 5em;
    }

}