.login-page-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../uploads/images/login_background.jpeg');
    background-size: 100%;
}

.login-content-column {
    position: absolute;
    height: 100%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 5vw;
    text-align: center;
}
@media (max-width: 991px) {
    .login-page-content {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .login-content-column {
        margin: 0;
        width: 80%;
    }
}
.login-page-content .login-form  {
    position: absolute;
    border-radius: 20px;
    width: 100%;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.login-page-content .form-control {
    margin-top: 2vh;
}
.login-content-column h2 {
    font-size: 26px;
}
.login-error {
    width: 100%;
}
.btn-login {
    border-radius: 50px;
    margin-top: 2vh;
    background-color: var(--custom-blue);
    width: 100%;
    color: var(--custom-white);
    font-weight: bold;
}
.forgotten-pwd {
    margin-top: 2vh;
}
.forgotten-pwd a {
    color: var(--custom-white) !important;
    text-decoration: none;
}