html {
    background-color: #ffffff;
    color: #333;
    font-family: var(--primary-font);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    position: relative;
    font-family: "Cabinet Grotesk Extrabold", sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    font-family: var(--primary-font);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    position: relative;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.loginContainer {
    /*width: 100vw;
height: 100vh;*/
}

.loginBG {
    background: url(../img/login_img.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
}

.loginContainer .innerlogin__block {
    width: 510px;
    min-height: 575px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 1em;
    border-radius: 20px;
    color: #333;
}

    .loginContainer .innerlogin__block .login__block {
        width: 100%;
        text-align: center;
        margin: auto;
    }

        .loginContainer .innerlogin__block .login__block img {
            margin: 0 0 25px 0;
            width: auto;
        }

form {
    width: auto;
}

    form .fileds__block {
        color: #333;
        width: 100%;
    }

        form .fileds__block .username,
        form .fileds__block .password {
            background: #FFF url(../img/ic-username.jpg) no-repeat 10px center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.16), 0 1px 3px rgba(0,0,0,0.2);
            border-left: #2e7df6 solid 5px;
            border-radius: 8px;
            width: 100%;
            font-size: 16px;
            color: #999;
            padding: 5px 0 5px 45px;
            margin: 15px 0 10px;
        }

        form .fileds__block .password {
            background: #FFF url(../img/ic-password.jpg) no-repeat 10px center;
        }

        form .fileds__block input {
            background: transparent;
            border: none;
            width: 100%;
            font-size: 1em;
        }

            form .fileds__block input:focus {
                outline: none;
                color: #666;
                border: none;
                box-shadow: 0 0 0 0.2rem rgba(0,123,255,.0);
            }

    form .forgot__link {
        font-size: 16px;
        color: #333;
        float: right;
        display: block;
        margin: 15px 0;
        text-decoration: underline;
    }

        form .forgot__link:hover {
            text-decoration: none;
        }

    form .btns__block {
        width: 100%;
        display: grid;
        text-align: center;
    }

        form .btns__block button {
            margin: 5px auto;
            padding: 10px 0;
            text-align: center;
            width: 100%;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
        }

        form .btns__block .loginBtn {
            background-color: #2f7df6;
            color: #ffffff;
        }

            form .btns__block .loginBtn:hover {
                transition: all 0.5s ease-in;
                background-color: #3145d2;
            }

        form .btns__block h2 {
            border-top: #e7e6e6 solid 2px;
            padding: 20px 0 0;
            margin: 20px auto 0;
            font-size: 18px;
            font-weight: bold;
            width: 100%;
        }

        form .btns__block p {
            width: 80%;
            margin: 0 auto;
            /*padding: 10px 0px;*/
            font-size: 14px;
            font-weight: 500;
        }

        form .btns__block .sigUpBtn {
            /*background: transparent;
            border: #2f7df6 solid 2px;
            color: #2f7df6;*/
            background: #e1e7eb;
            border: #e1e7eb solid 2px;
            color: #333;
            border-radius: 8px;
        }

            form .btns__block .sigUpBtn:hover {
                background: #2f7df6;
                border: #2f7df6 solid 2px;
                color: #FFF;
                border-radius: 8px;
            }

@media only screen and (max-width: 1100px) {
    .innerlogin__block {
        width: 85%;
    }

        .innerlogin__block .login__block img {
            width: 70%;
        }
}

@media only screen and (max-width: 800px) {
    .loginContainer {
        grid-template-columns: repeat(1, 1fr);
    }

        .loginContainer .innerlogin_block__left {
            display: none;
        }

        .loginContainer .innerlogin__block {
            width: 95%;
        }
}

/*# sourceMappingURL=loginStyle.css.map */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #FFF inset !important;
}
