*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
}
body{
    background: #567bf3;
}
.container{
    width: min(40%, 28.12em);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.container *{
    border: none;
    outline: none;
}
.input-wrapper{
    background-color: #ffffff;
    padding: 1.87em 1.5em;
    border-radius: 0.5em;
    box-shadow: 0.0.93em 1.25em rgba(0,0,0,0.93em);
    margin-bottom: 3.12em;
    display: grid;
    grid-template-columns: 8fr 3fr;
    gap: 1em;
}
input, button{
    font-weight: 500;
    border-radius: 0.31em;

}
input{
    padding: 1.2em 1.25em;
    font-size: 0.87em;
    background-color:rgb(198, 198, 255) ;
    color: #000000;

}
button{
    color: #ffffff;
    background-color:#567bf3 ;

}
.output-wrapper{
    width:100%;
    display: flex;
    justify-content: space-between;
}
.output-wrapper div{
    height: 6.25em;
    width:6.25em;
    background-color: #ffffff;
    border-radius: 0.31em;
    color: #000000;
    display: grid;
    place-items: center;
    padding: 1.25em 0;
    box-shadow: 0 0.93em 1.25em rgba(0,0,0,0.3);
}
span{
    font-size:1.87em;
    font-weight: 500;

}
p{
    font-size:0.87em;
    color: #707070;
    font-weight: 400;
}
