html, body{
    height: 100%;
}
body{
    margin: 0;
    font-size: 16px;
    font-family: "Raleway Medium", 'Times New Roman', Times, serif;
}
.grid-container{
    display: grid;
    grid-template-columns: 50% 50%;
    height: 100%;
}
.img-container{
    margin: 0;
    background-image: url('https://th.bing.com/th/id/R.aca8981e7f8488c2f7f227ef000d4a21?rik=OlqashBxCipQwA&riu=http%3a%2f%2fwallpapercave.com%2fwp%2fBpEz9MK.jpg&ehk=%2fqKpODd20%2fAQpBpyv%2bSwvvARJTzk5uf25f7dXYCcpEc%3d&risl=&pid=ImgRaw&r=0');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.form-container{
    padding: 60px 70px;
}
.form-description{
    font-size: 200%;
}
.form-description p{
    font-size: 70%;
}
.inputs label{
    display: block;
    color: #777;
}
.inputs input{
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ff8512;
    padding: 7px 0;
    margin: 10px 0;
    transition: all .4s;
}
.inputs input:focus{
    outline: none;
    border-bottom: 2px solid #d37012;
    margin-bottom: 9px;
}
.tap{
    margin-top: 30px;
    text-align: center;
}
.tap button{
    border: none;
    font-family: inherit;
    background-color: #ff8512;
    border-radius: 30px;
    box-shadow: 0 10px 30px #d36f1257;
    padding: 20px;
    cursor: pointer;
    width: 200px;
    color: white;
    transition: all .3s;
}
.tap button:hover{
    box-shadow: none;
    background-color: #ff8b1f;
}
.travel-time{
    display: block;
    color: #d37012;
    text-shadow: 0 0 3px #d36f1273;
}
.tap a{
    text-decoration: none;
    color: #777;
}
.option-for-log{
    text-align: center;
}
.option-for-log a{
    display: inline-block;
    margin-top: 50px;
    background-color: cornsilk;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
    transition: all 0.4s;
}
.option-for-log .signup{
    margin-right: -5px;
}
.option-toggle{
    background-color: black !important;
    color: white !important;
}
.signup-screen{
    transition: all 0.3s;
}
.non-display{
    display: none;
}
@media screen and (max-width: 1080px){
    body{
        font-size: 12px;
    }
    .form-container{
        padding: 60px 50px;
    }
    .tap button{
        width: 150px;
        padding: 15px;
    }
}
@media screen and (max-width: 760px){
    body{
        font-size: 10px;
    }
    .form-container{
        padding: 60px 30px;
    }
}
@media screen and (max-width: 550px){
    .form-container{
        padding: 60px 30px;
    }
    .img-container{
        display: none;
    }
    .form-container{
        text-align: center;
    }
    .grid-container{
        display: block;
    }
}
