﻿/*@font-face {
    font-family: 'Roboto';
    font-weight: 400;
    src: url('../Fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-weight: 500;
    src: url('../Fonts/Roboto-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-weight: 700;
    src: url('../Fonts/Roboto-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-weight: 800;
    src: url('../Fonts/Roboto-Black.ttf') format('truetype');
}

body, button, input, select, textarea {*/
    /*font-family: $COMMON_FONT;*/
    /*font-family: "Roboto", sans-serif !important;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.6;
}*/

.limiter {
    width: 100%;
    margin: 0 auto;
    color: #2A3893;
}

.container {
    padding: 20% 5%;
}

.container-login {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #f2f2f2
}

.wrap-login {
    width: 100%;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.login-form {
    display: block;
    background-color: #fff;
    /*padding: 10px;*/
    margin: 0px auto;
    width: auto;
    min-height: 100vh;
}

.login-form-title {
    width: 100%;
    display: block;
    color: #2A3893;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: left
}

.login-cover {
    position: relative;
    width: calc(100% - 840px);
    z-index: 1;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

    .login-cover::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .1)
    }

.row-assistance {
    display: block;
    margin-bottom: 0;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: start;
    line-height: 2;
}

@media (min-width: 1025px) {
    .row-assistance {
        display: flex;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        align-items: start;
        justify-content: space-between;
    }
}

.icon-face {
    height: 50px;
    width: 50px;
    margin: 0px;
    box-shadow: 0px 5px 5px 1px darkgrey;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.icon-mail {
    height: 50px;
    width: 50px;
    margin: 0px 10px;
    box-shadow: 0px 5px 5px 1px darkgrey;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.icon-line {
    height: 50px;
    width: 50px;
    margin: 0px;
    box-shadow: 0px 5px 5px 1px darkgrey;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.icon-faceid {
    border: none;
    height: 50px;
    width: 50px;
    margin: 0px 10px;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container-footer {
    color: black;
    position: relative;
    padding: 0px;
    text-align: center;
}
/* input */
.wrap-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid grey;
    margin-bottom: 30px;
}

.login-input {
    color: #2A3893;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: 0 0;
    padding: 0 35px 0 38px;
    border: none;
    outline: none;
    border: none
}

    .login-input:focus {
        padding-left: 5px
    }

        .login-input:focus + .fas::after {
            top: -22px;
        }

        .login-input:focus + .fas::before {
            width: 100%
        }

.fas {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    text-align: start;
}

    .fas::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        -moz-transition: all .4s;
        transition: all .4s;
        background: #2A3893
    }

    .fas::after {
        color: #2A3893;
        content: attr(data-placeholder);
        display: block;
        width: 100%;
        position: absolute;
        top: calc(50% - 0.5em);
        left: 0;
        padding-left: 5px;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        -moz-transition: all .4s;
        transition: all .4s
    }

input.login-input {
    /*-webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s*/
}

.login-input:focus + .fas {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}
/* close input */
/* button */
.container-login-button {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

#login-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.25rem;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 4px;
    background: #2A3893;
    color: #fff;
    line-height: 1.2;
    outline: none !important;
    border: none;
    letter-spacing: 1px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s
}

#login-button:hover {
    cursor: pointer;
    background: #1D2766;
}
/* close button */
p#login-faceid {
    margin: auto 0px;
}

#forgot-pass {
    color: black;
    width: 30%
}

#forgot-pass:hover {
    text-decoration: underline;
}

#remember-me {
    color: black;
    width: 70%;
    text-align: right;
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    /*.container {
        padding: 20px 50px;
        height: 80vh;
    }*/

    .login-form {
        width: 840px;
        min-height: 100vh;
    }

    .login-cover {
        width: calc(100% - 840px);
        background-size: 100% 100%;
    }
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    /*.container {
        padding: 50px 100px;
        height: 80vh;
    }*/

    .login-form {
        width: 100%;
        min-height: 100vh;
    }

    .login-cover {
        display: none;
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    /*.container {
        padding: 100px 100px;
        height: 90vh;
    }*/

    .login-form {
        width: 45%;
        min-height: 100vh;
    }

    .login-cover {
        display: block;
        width: 55%;
        height: 100vh;
        background-size: 100% 100%;
    }
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    /*.container {
        padding: 160px 190px;
    }*/

    .login-form {
        width: 45%;
        min-height: 100vh;
    }

    .login-cover {
        display: block;
        width: 55%;
        /*height: 100vh;*/
        background-size: 100% 100%;
        align-self: normal;
        max-width: 755px;
    }
}

script, head {
    display: none;
    margin-top: unset;
    margin-bottom: unset;
}

#login-title {
    color: #5B5959;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 500;
}
.login-sub-title {
    color: #10208F;
    font-size: 2rem;
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
    margin-bottom: -0.5rem;
}

.logo-sign-in-container {
    text-align: center;
}

.logo-sign-in {
    width: 25%;
}