@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&display=swap');
*{
    padding: 0;
    margin: 0;
}
body{
    height: 100vh;
    box-sizing: border-box;
    font-family: 'Baloo Bhai 2', cursive;
    background-image: linear-gradient(180deg,#f43543,#ffffff);
   background-repeat: no-repeat;
}
.container{
    position: relative;
    top: -16.5em;
    display: flex;
    justify-content: center;
    align-items: center;  
}
h1{
  text-align: center;
  padding: 1em 0;
  font-size: 3em; 
}
.wrapper{
    background: #d1525a;
    width: 30em;
    border-radius: 10px;
    box-shadow: 0em 1em 3em 2em rgba(0,0,0,0.2);
}
.input-section{
    display:flex;
    gap:1em;
    padding: 1em;
}
.white-box{
    position: relative;
    width: 20em;
    height: 20em;
    background-color: aliceblue;
    box-shadow: 0em 1em 3em 1em rgba(0,0,0,0.4);
    border-radius: 5px;
}
.input{
    width: 15em;
    height: 2.5em;
    font-size: 1.3em;
    text-align: center;
    background-color: transparent;
    border: 2px solid black;
    border-top: none;
    font-weight: 700;
    border-left: none;
    border-right: none;
}
.btn{
    margin-top: 0.5em;
    width: 4.6em;
    height: 2em;
    border: none;
    padding: 0.2em;
     color: #f43543;
     font-size: 1.2em;
     font-weight: 600;
     box-shadow: 2px 2px 2px 1px rgba(5,5,5,0.3);
     border-radius: 10px;
}
.btn:hover{
    cursor: pointer;
    background-color: black;
    color:#ffffff;
}
.checkBoxes{
    padding: 1em 2em;
    font-size: 1.3em;
    width: 20em;  
}
.checkBoxes input{
    width: 3em;  
}
img{
    margin-top:1em;
    width: 1em;
    height: 1.5em;
    cursor:pointer;
}
.img-btn{
background: none;
border: none;
}
.back-design{
    display: flex;
    justify-content: center;
    align-items: center;
   
}
@media (max-width:450px) {
    .container{
        position: relative;
        top: -16.5em;
        display: flex;
        justify-content: center;
        align-items: center;  
    }
    .wrapper{
        background: #d1525a;
        width: 22em;
        border-radius: 10px;
        box-shadow: 0em 1em 3em 2em rgba(0,0,0,0.4);
    }
    .input-section{
        display:flex;
        gap:0.5em;
        padding: 1em;
    }
    .white-box{
        position: relative;
        width: 18em;
        height: 20em;
        background-color: aliceblue;
    }
    .input{
        width: 10em;
        height: 2.5em;
        font-size: 1.3em;
        text-align: center;
        background-color: transparent;
        border: 2px solid black;
        border-top: none;
        font-weight: 700;
        border-left: none;
        border-right: none;
    }
    .btn{
        margin-top: 0.5em;
        width: 4.6em;
        height: 2em;
        border: none;
        padding: 0.2em;
         color: #f43543;
         font-size: 1.2em;
         font-weight: 600;
         box-shadow: 2px 2px 2px 1px rgba(5,5,5,0.3);
         border-radius: 10px;
    }
    .checkBoxes{
        padding: 1em 1em;
        font-size: 1.3em;
        width: 20em;  
    }
    
}