﻿.container-outer {
    height: calc(100vh - 120px);
}

.container-inner {
    justify-content: center;
}

form{
    width: 40%;
}

.form-group{
    margin: 10px 0px;
    font-size: inherit;
}
.form-group label{
    font-weight: bold;
    font-size: inherit;
    color: var(--text-content);
}

.form-control:focus{
    box-shadow: 0 0 0 0.15rem rgba(0, 123, 255, 0.25);
}

.form-control::placeholder{
    font-size: inherit;
}

#login-submit{
    width:100%;
}


@media (max-width: 576px){
    form{
        width: 80%;
    }
}

@media (min-width: 576px) and (max-width: 768px){
    form{
        width: 60%;
    }
}