*{
    margin:0px;
    border: 0px;
    box-sizing: border-box;
}
#suc{
display: none;
}
body{
    display:flex;
    align-items: center;
    justify-content: center;
    width:100vw;
    height:100vh;
    background-color:hsl(234, 21%, 29%)
}
.container{
    width:680px;
    height:450px;
    background:white;
    border-radius: 35px;
    display:flex;
    align-items: center;
    justify-content: center;
}
.leftpart{
    width:50%;
    height:85%;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:15px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    color:hsl(234, 29%, 20%);
   
}
.rightpart{
    width:35%;
    height:85%;
    border-radius: 20px;
    
    
}
.rightpart img{
    width:110%;
    height:100%;
}
.lineone{
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size:40px;
}
.alltick{
    display: flex;
    justify-content: center;
    justify-content: space-around;
    flex-direction: column;
    height:24%;
}
.ticks{
    display: flex;  
}
.ticks img{
    margin-right: 13px;
}
.inputbox{
    display: flex;
    flex-direction: column;
    height:30%;
    justify-content: end;
    width:80%;
    align-items:flex-start;
   margin-right:50px;
    justify-content: space-between;
}
.inputbox label {
    font-size:14px;
    font-weight: bolder;
}
input{
    width:290px;
    height:40px;
    border-radius: 10px;
    border: 0.5px solid black;
    font-size:15px;
    margin-top:6px;
    text-align: center;
    margin-bottom:16px;
}
button{
    width:290px;
    height:40px;
    border-radius: 10px;
    color:white;
    background-color:hsl(234, 29%, 20%);
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    transition-duration: 0.2s;
}
button:hover{
    background-color: hsl(4, 100%, 67%);
    transition-duration: 0.2s;
}
#ghost{
    display:none;
}

@media only screen and (max-width: 600px){
    #img{
        display:none;
    }
    .container{
        width:100vw;
        height:100%;
        background:white;
    
        display:flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }
    .leftpart{
        width:80%;
        height:100%;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size:16px;
        display: flex;
        justify-content: center;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
        color:hsl(234, 29%, 20%);
       
    }
    .rightpart{
        width:100%;
        height:50%;
        border-radius: 20px;
        
        
    }
    .rightpart img{
        width:100%;
        height:100%;
    }
    .lineone{
        font-family: "Roboto", sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size:30px;
    }
    .alltick{
        display: flex;
        justify-content: center;
        justify-content: space-around;
        flex-direction: column;
        height:24%;
    }
    .ticks{
        display: flex;  
    }
    .ticks img{
        margin-right: 12px;
    }
    .inputbox{
        display: flex;
        flex-direction: column;
        height:30%;
        justify-content: end;
        width:80%;
        align-items:flex-start;
       margin-right:50px;
        justify-content: space-between;
    }
    .inputbox label {
        font-size:10px;
        font-weight: bolder;
    }
    input{
        width:130%;
        height:40px;
        border-radius: 10px;
        border: 0.5px solid black;
        font-size:16px;
        margin-top:6px;
        text-align: center;
        margin-bottom:16px;
    }
    button{
        width:130%;
        height:40px;
        border-radius: 10px;
        color:white;
        background-color:hsl(234, 29%, 20%);
        font-weight: bold;
        font-family: "Roboto", sans-serif;
        transition-duration: 0.2s;
        font-size:12px;
    }
    button:hover{
        background-color: hsl(4, 100%, 67%);
        transition-duration: 0.2s;
    }
}