*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
form{
    display: flex;
}
.image{
    width: 350px;
    height: 400px;
    position: relative;
}
.image img{
    width: 350px;
    height: 400px;
    position: absolute;
    top: 37px;
    left: 0;
    

}
.login-home{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: white;
   
}
.login-home .login-wrap{
    width: 400px;
    padding: 10px 15px;
    background: #3f9e60;
    border-radius: 8px;
}
.login-home .login-wrap h2{
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
}
.login-home .login-wrap .login-field{
    width: 100%;
    margin: 20px 0px;
}
.login-home .login-wrap .login-field input{
    width: 100%;
    height: 40px;
    border-radius: 6px;
    outline: none;
    border: none;
    margin-top: 10px;
    padding: 10px;
}
.login-home .login-wrap .login-field span{
    text-transform: capitalize;
    
}
.login-home .login-wrap .login-fill{
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-home .login-wrap .login-fill button{
    padding: 15px 25px;
    border-radius: 8px;
    border: none;
    outline: none;
    color: #3f9e60;
    font-size: 20px;
    text-transform: uppercase;
}
@media screen and (max-width:768px) {
    .image{
        display: none;
    }
    
}

@media screen and (max-width:500px){
    .login-home .login-wrap{
        width: 250px;
        padding: 10px 15px;
        background: #3f9e60;
        border-radius: 8px;
    }


}