body{
    width: 100vw;
    height: 100vh;
}
body .container{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form #sms{
    color: red;
    font-size: 12px;
    font-weight: bold;
}

.container .main{
    margin-top: 25px;
    margin: auto;
    width: 90%;
    padding: 10px;
}
.main .img{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
}
.img img{
    width: 60%;
    height: 100%;
}
.form .buttons{ 
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content:flex-start;    
}

@media screen and (min-width: 1000px){
    .container .main{
        width: 60%;
        padding: 10px;
    }
    .img img{
        width: 250px;
        height: 100%;
    }
    .main .form{
        width: 80%;
        margin: auto;
    }
}