.container-fluid {
    padding-left: 0px;
    padding-right: 20px;
}

a {
    text-decoration: none;
    color: #10B7BF;
}

a:hover, a:focus {
    color: #169B9A;
}

.login-left {
    height: 100vh;
    padding: 16px;
    background-image: url('../assets/img/login-fade.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.login-left-footer {
    position: absolute;
    bottom: 0;
}

.login-left-footer h1 {
    font-size: 60px;
}

.login-left-footer h3 {
    font-size: 40px;
}

.login-right {
    padding: 16px;
}

.forgot-password {
    font-size: 16px;
    margin-top: 8px;
}

.text-primary {
    color: #169B9A !important;
}

.errors {
    margin-block-end: 0em;
}

/* Small devices (landscape phones, 576px and up) */
@media(max-width:767px) {
    .login-left {
        display: none;
    }

    .login-right {
        padding-right: 0px;
    }

    .logo-mobile {
        display: block;
        margin-bottom: 2rem;
        border-bottom: 4px double #000;
        padding: 16px 0px;
    }

    .login-right form {
        margin-top: 15vh;
    }
}

/* Medium devices (tablets, 768px and up) */
@media(min-width:768px) {
    .login-left {
        display: block;
    }

    .logo-mobile {
        display: none;
    }

    .login-right form {
        margin-top: 25vh;
    }
}