/* Global */
.pt-0 {
    padding-top: 0 !important;
}

.text-right {
    text-align: right;
}

/* ********** */
body{
    height: auto !important;
}

.auth, #header-auth {
    background-color: #e7f0fd;
    border: none;
}

.img {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
    .img img {
        width: 100%;
    }

h2.title {
    color: #387dc3;
    margin: auto -50px;
    padding: 15px;
    font-size: 40px;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    background: #bbd8e5;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
} 

h2.title p {
    margin: 0 15px;
}

.form-login {
    height: 100vh;
}

.content-auth {
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    width: 600px;
    padding: 0 50px;
}

    .content-auth img {
        height: 100%;
    }

    .content-auth h2 {
        text-align: center;
    }

.label-auth{
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.input-auth {
    font-size: 1.3em;
}

    .input-auth div {
        box-shadow: none;
        border-radius: 25px;
    }
        .input-auth div input {
            padding: 0 15px;
        }

.button-submit {
    margin: 15px 0;
}

.button-submit div {
    border-radius: 25px !important;
}

.button-submit:hover div {
    background-color: #2e74d6 !important;
}

.text-auth .forget-password {
    align-self: center;
}

.text-auth .forget-password a {
    color: #3688fc;
}

.text-auth .forget-password a:hover {
    text-decoration: none;
    color: #2e74d6;
}

.ui-checkbox {
    margin-top: 0;
    margin-bottom: 0;
}

#label-remember-me {
    background: none !important;
    color: black !important;
    border: none;
    font-weight: 400;
}

.text-auth {
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.validation-summary-errors, .red {
    color: red;
}
/* class col-sm bootstrap */
@media only screen and (max-width: 991px ) {
    .label-auth {
        justify-content: left;
    }  

    .img{
        display: none;
    }
}

/* class col-md bootstrap */
@media only screen and (min-width: 992px ) {
    .button-submit {
        display: flex;
        justify-content: center;
    } 

    .button-submit div {
        width: 30%;
    }
}

@media only screen and (max-width: 600px) {
    .content-auth {
        width: 85%;
        padding: 0 20px;
    }

    #header-auth h2 {
        padding: 0.75em;
    }

    h2.title{
        margin: auto -20px;
    }
}

/* class col-xs bootstrap */
@media only screen and (max-width: 451px ) {
    .text-auth {
        flex-direction: column;
        padding-bottom: 15px;
        border-bottom: 1px solid #dee2e6;
        margin-bottom: 20px;
    }

    .text-auth div {
        margin-left: auto;
        margin-right: auto;
    }
    .forget-password {
        padding: 10px;
        padding-top: 0;
    }

    h2.title{
        height: 70px;
        align-items: flex-end;
    }

    h2.title p{
        font-size: 30px;
    }

    .content-auth h2{
        font-size: 20px;
    }

    .label-auth{
        margin-top: 15px;
    }

    .input-auth{
        font-size: 1em;
    }
}