@font-face {
    font-family: 'BPG2017DejaVuSans';
    src: url('/assets/fonts/BPG2017DejaVuSans/BPG2017DejaVuSans.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/BPG2017DejaVuSans/BPG2017DejaVuSans.woff') format('woff'), url('/assets/fonts/BPG2017DejaVuSans/BPG2017DejaVuSans.ttf') format('truetype'), url('/assets/fonts/BPG2017DejaVuSans/BPG2017DejaVuSans.svg#BPG2017DejaVuSans') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BPG2017DejaVuSans-Bold';
    src: url('/assets/fonts/BPG2017DejaVuSans-Bold/BPG2017DejaVuSans-Bold.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/BPG2017DejaVuSans-Bold/BPG2017DejaVuSans-Bold.woff') format('woff'), url('/assets/fonts/BPG2017DejaVuSans-Bold/BPG2017DejaVuSans-Bold.ttf') format('truetype'), url('/assets/fonts/BPG2017DejaVuSans-Bold/BPG2017DejaVuSans-Bold.svg#BPG2017DejaVuSans') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: 'BPG2017DejaVuSans-Bold', sans-serif;
}

.side-bg {
    background: linear-gradient(0deg, rgba(134, 253, 232, 0.2) 0%, rgba(172, 182, 229, 0.2) 100%);
    width: 60vw;
    height: 95vh;
    position: absolute;
    top: 0;
    left: 0;
    transform: skewY(2.5deg);
    transform-origin: 100%;
}

.login-form {
    margin-top: 10vh;
    background: #FFFFFF;
    box-shadow: -2px 10px 50px rgba(54, 59, 93, 0.2);
    border-radius: 4px;
    min-width: 300px;
    width: 100%;
    height: 100%;
    padding: 50px;
    position: relative;
}

.login-form-title {
    font-size: 33px;
    line-height: 100%;
    letter-spacing: 0.02em;
    color: #363B5D;
    text-align: left;
}

.red-line {
    width: 65px;
    height: 5px;
    background: #F15C5A;
}

.form-input {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    border-radius: 5px;
}

.form-input:-webkit-autofill ~ .form-label {
    top: -10px !important;
    left: 15px !important;
    font-size: 15px !important;
    padding-left: 3px;
    padding-right: 3px;
    transition: 0s;
    background-color: white;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.form-input:focus {
    border: 2px solid #2B89ED;
    box-shadow: 2px 2px 10px rgba(31, 134, 255, 0.05);
}

.form-input:focus ~ .form-label {
    padding-left: 3px;
    padding-right: 3px;
    top: -10px;
    left: 15px;
    font-size: 15px;
    color: #2B89ED;
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.focusout {
    top: -10px !important;
    left: 15px !important;
    font-size: 15px !important;
    padding-left: 3px;
    padding-right: 3px;
}

.form-div {
    position: relative;
    z-index: 1;
}

.form-label {
    font-family: 'BPG2017DejaVuSans', sans-serif;
    position: absolute;
    color: dimgray;
    top: 18px;
    left: 20px;
    display: table-cell;
    background-color: white;
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
    z-index: 1;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    cursor: text;
}

.submit-btn {
    background: #F15C5A;
    border-radius: 5px;
    color: white;
    border: 0;
    width: 255px;
    height: 50px;
    box-shadow: 1px 3px 15px rgba(241, 92, 90, 0.4);
}

.submit-btn:focus {
    outline: 0;
}

.forgot {
    font-family: 'BPG2017DejaVuSans', sans-serif;
    font-size: 14px;
    line-height: 16px;
    color: #363B5D;
}

.forgot:hover {
    text-decoration: none;
    color: #0F5BAC;
}

.logo {
    position: absolute;
    left: -250px;
    top: 55px;
}

.low-resolution {
    display: none;
}

/*.low-resolution p {*/
/*    color: #363B5D;*/
/*    font-family: 'BPG2017DejaVuSans-Bold', sans-serif;*/
/*    font-size: 30px;*/
/*    text-align: center;*/

/*}*/

@media screen and (min-width: 768px) {
    .login-form {
        min-width: 540px;
    }
}

@media screen and (max-width: 768px) {
    .logo {
        position: static;
        margin-bottom: 20px;
    }

    .login-form {
        text-align: center;
        margin-top: 50px;
    }

    .forgot {
        display: block;
        margin-top: 20px;
    }
}

@media screen and (max-width: 375px) {
    .submit-btn {
        width: 100%;
    }

    .login-form {
        min-width: unset;
    }

    .login-form-title {
        margin-top: 10px;
        font-size: 25px;
        text-align: center;
    }

    .red-line {
        margin: 0 auto;
        width: 60%;
    }
}

@media screen and (max-width: 991px) {
    .tab-btn {
        margin-top: 20px;
    }

    /*.low-resolution {*/
    /*    display: flex;*/
    /*    justify-content: center;*/
    /*    align-items: center;*/
    /*    position: fixed;*/
    /*    width: 100%;*/
    /*    height: 100%;*/
    /*    z-index: 2000;*/
    /*    background: linear-gradient(0deg, rgba(134, 253, 232, 1) 0%, rgba(172, 182, 229, 1) 100%);*/
    /*    transition: opacity .2s;*/
    /*}*/
}
