*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    background-image: url(icons/pexels-photo-1367105.jpeg);
    background-size: cover;
}
.header{
    padding: 50px;
    background: linear-gradient(lightslategrey,white);
    font-family: 700;
    font-family: sans-serif;
    display: flex;
    justify-content: space-between;
   

}
.header img{
    height: 100px;
}
.mainbody{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
   background-color: transparent;
}
.mainbody .myform{
   height: 300px;
   width: 350px;
   background-color: rgba(0,0,0,0.6);
   border: none;
   border-radius: 15px;
   box-shadow: 2px 4px 8px rgba(0,0,0,0.6);
   text-align: center;
 

}
.mainbody .myform img{
    height: 50px;
    transform: translateY(30px);
}
.myform form{
    padding: 80px;
    box-sizing: border-box;
}
.myform form .inputs{
    margin-top: 5px;

}
.myform form .inputs input{
    border: none;
    border-radius: 5px;
    width: 100%;
    height: 30px;
}
.myform form input[type='submit']{
    background-color: brown;
    letter-spacing: 5px;
    color: white;
}