html,body{
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100vh;
    width: 100vw;
    font-family: 'Roboto';
}



#login-container{
    height: 100%;
    width: 100%;
    
    background-color: rgba(204, 225, 255,1);
    display: flex;
    align-items: center;
    background: rgba( 250,250,250,.5 ) 
    url('../images/bg.jpg')
    no-repeat;
}
#logo{
    position: absolute;
    width: 153px;
    height: 97px;
    top: 27px;
    right: 20px;
}
#login-form{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width:323px;
    height: 225px;
    color: #232323;
}

#login-form input{
    margin-bottom: 16px;
    width:100%;
    height: 62px;
    font-size: 26px;
    background-color: #f8f5f2;
    border: 0;
    outline: none;
    box-shadow: 2px 2px 3px 0px rgba(50, 50, 50, 0.48);
    border-radius: 4px;
    text-indent: 15px;
}

#login-form button{
    position: absolute;
    background-color: #f8f5f2;
    height: 45px;
    width: 163px;
    font-size: 23px;  
    border: none;
    font-weight: 300;
    border-radius: 20px;
    box-shadow: 2px 2px 3px 0px rgba(50, 50, 50, 0.48);
    bottom: 0px;
    right: 0px;
}


