

html,body{height: 100%;}

.login-aside{
    width: 100%;
    background: linear-gradient( #1AEBB6 0%, #13B7AA 100%);
    padding: 16px;
}

#content{background: white; padding: 0;}

a.button{
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    background: dodgerblue;
}

.login-box{
    padding: 30px 16px 60px;
}
label{
    display: block;
    font-size: 18px;
    font-weight: 600;
}
.f-row{
    margin-bottom: 18px;
    width: 100%;
}
.f-col{
    width: 100%;

}
input{
    width: 100%;
    height: 40px;
    border-radius: 4px;
    border: 1px solid rgb(217 217 217);
    padding: 8px 12px!important;
    -webkit-appearance: none;
}

input:focus{
    border-color: dodgerblue;
    outline: none;
}

#footer{
    width: 100%;
    height: 80px;
    background: white;
    padding: 12px 0 0 0;
    border-top: 1px solid #d5d5d5;
}
#footer p{
    text-align: center;
}




.error-box{text-align: center;}





@media screen and (min-width: 769px) {
    body #container{
        height: 100%;
        height: 100vh;
        min-height: inherit!important;
        display: flex;
        flex-flow: row;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .login-aside{
        padding: 0;
        display: flex;
        flex-flow: row;
        justify-content: center;
        align-items: center;
        width: 35%;
        height: 100%;
        background: linear-gradient( #1AEBB6 0%, #13B7AA 100%);
    }
    .login-aside .logo-container img{
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    #content{
        width: 65%;
        height: 100%;
        padding: 0;
        margin: 0;
    }

    .login-box{
        height: calc(100% - 90px);
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        padding-left: 10vw;
    }

    .f-row{
        margin-bottom: 18px;
        width: 100%;
        min-width: 350px;
        max-width: 600px;
    }
    a.button{
        width: 120px;
        transition: .2s;
    }
    a.button:hover{
        background: rgb(7, 88, 169);
    }
    #footer p{
        text-align: left;
        padding-left: 10vw;
    }

    .error-box{text-align: left;}

}