﻿@font-face {
    font-family: 'SVN-Gotham';
    src: url("/fonts/SVN-GothamBook.woff2") format("woff2"), url("/fonts/SVN-GothamBook.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SVN-Gotham';
    src: url("/fonts/SVN-Gotham.woff2") format("woff2"), url("/fonts/SVN-Gotham.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SVN-Gotham';
    src: url("/fonts/SVN-GothamBlack.woff2") format("woff2"), url("/fonts/SVN-GothamBlack.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SVN-Gotham';
    src: url("/fonts/SVN-GothamBold.woff2") format("woff2"), url("/fonts/SVN-GothamBold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.55);
    font-family: SVN-Gotham;
    font-size: 14px;
}

::-moz-placeholder { /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.55);
    font-family: SVN-Gotham;
    font-size: 14px;
}

:-ms-input-placeholder { /* IE 10+ */
    color: rgba(0, 0, 0, 0.55);
    font-family: SVN-Gotham;
    font-size: 14px;
}

:-moz-placeholder { /* Firefox 18- */
    color: rgba(0, 0, 0, 0.55);
    font-family: SVN-Gotham;
    font-size: 14px;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: SVN-Gotham;
    font-size: 14px;
}

.loading {
    z-index: 2000;
    top: 0px;
    left: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 1s;
    -moz-transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -ms-transition: opacity 1s;
    opacity: 1;
    display: none;
}

    .loading.active {
        display: block;
    }

    .loading .circle {
        background-color: rgba(0, 0, 0, 0);
        border: 5px solid rgba(0, 183, 229, 0.9);
        /* border: 5px solid rgba(245, 131, 31, 0.9); */
        opacity: .9;
        border-right: 5px solid rgba(0, 0, 0, 0);
        border-left: 5px solid rgba(0, 0, 0, 0);
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -webkit-border-top-left-radius: 50px;
        -webkit-border-top-right-radius: 50px;
        -webkit-border-bottom-left-radius: 50px;
        -webkit-border-bottom-right-radius: 50px;
        -moz-border-radius: 40px;
        box-shadow: 0 0 35px #2187e7;
        /* box-shadow: 0 0 35px #FFAC48; */
        width: 40px;
        height: 40px;
        margin: 50vh auto;
        animation: spinPulse 1s infinite ease-in-out;
        -ms-animation: spinPulse 1s infinite ease-in-out;
        -moz-animation: spinPulse 1s infinite ease-in-out;
        -webkit-animation: spinPulse 1s infinite linear;
        position: relative;
    }

    .loading .circle1 {
        background-color: rgba(0, 0, 0, 0);
        border: 5px solid rgba(0, 183, 229, 0.9);
        /* border: 5px solid rgba(245, 131, 31, 0.9); */
        opacity: .9;
        border-left: 5px solid rgba(0, 0, 0, 0);
        border-right: 5px solid rgba(0, 0, 0, 0);
        border-radius: 25px;
        -webkit-border-radius: 50px;
        -webkit-border-top-left-radius: 50px;
        -webkit-border-top-right-radius: 50px;
        -webkit-border-bottom-left-radius: 50px;
        -webkit-border-bottom-right-radius: 50px;
        -moz-border-radius: 50px;
        box-shadow: 0 0 15px #2187e7;
        /* box-shadow: 0 0 15px #FFAC48; */
        width: 25px;
        height: 25px;
        top: 10%;
        left: 9%;
        margin: 0 auto;
        position: absolute;
        animation: spinoffPulse 1s infinite linear;
        -ms-animation: spinoffPulse 1s infinite linear;
        -moz-animation: spinoffPulse 1s infinite linear;
        -webkit-animation: spinoffPulse 1s infinite linear;
    }

@-moz-keyframes spinPulse {
    0% {
        -moz-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }

    50% {
        -moz-transform: rotate(145deg);
        opacity: 1;
    }

    100% {
        -moz-transform: rotate(-320deg);
        opacity: 0;
    }
}

@-moz-keyframes spinoffPulse {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spinPulse {
    0% {
        -webkit-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }

    50% {
        -webkit-transform: rotate(145deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(-320deg);
        opacity: 0;
    }
}

@-webkit-keyframes spinoffPulse {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-ms-keyframes spinPulse {
    0% {
        -ms-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }

    50% {
        -ms-transform: rotate(145deg);
        opacity: 1;
    }

    100% {
        -ms-transform: rotate(-320deg);
        opacity: 0;
    }
}

@-ms-keyframes spinoffPulse {
    0% {
        -ms-transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
    }
}

.body-mark {
    z-index: 999;
    display: none;
    background: rgba(1, 1, 1, 0.55);
}

    .body-mark.active {
        display: block;
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
    }

    .body-mark .modal-backdrop {
        float: left;
        width: 100%;
        height: 100%;
    }

body.mark .body-mark {
    display: block;
}

body.mark .mark-content {
    width: 100%;
    height: 100%;
    float: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1251;
    background: rgba(17, 17, 17, 0.78);
}

body.mark .body-mark.active .mark-content {
    display: none;
}
.wrapper{
    position:relative;
    width:100vw;
    height:100vh;
    overflow:hidden;
}
.login {
    width: 100vw;
    height: 100vh;
    display: flex;
    background: url("/Content/img/background.jpg") no-repeat;
    position: relative;
    flex-direction:column;
    justify-content:center;
    background-size:cover;
}

.symbol1 {
    position: absolute;
    width: 300px;
    height: auto;
    left: -150px;
    top: -150px;
    opacity: .1;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

    .symbol1 img {
        opacity: 1;
        visibility: inherit;
        transform: translate(0px, 0px);
        width:100%;
    }

.symbol4 {
    position: absolute;
    width: 300px;
    height: auto;
    right: -150px;
    bottom: -150px;
    opacity: .1;
}

    .symbol4 img {
        -webkit-transform: translateY(0.5rem);
        transform: translateY(0.5rem);
        width:100%;
    }

.symbol2 {
    width: 16.5625rem;
    height: auto;
    right: 20.5rem;
    top: 3.25rem;
    position:absolute;
}
    .symbol2 img {
        opacity: 1;
        visibility: inherit;
        transform: translate(0px, 0px);
        width:100%;
    }
.flex{
    display:flex;
}
.flex-center{
    justify-content:center;
}
.symbol3 {
    width: 7.75rem;
    height: auto;
    left: 0;
    bottom: 0;
   position:absolute;
}

    .symbol3 img {
        opacity: 1;
        visibility: inherit;
        transform: translate(0px, 0px);
        width:100%;
    }
.login-form {
    width: 37.5rem;
    margin: 0 auto;
    background: #fff;
    padding: 2rem 6rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0.0125rem 0.125rem 0.75rem 0.15rem rgb(0 0 0 / 8%);
    box-shadow: 0.0125rem 0.125rem 0.75rem 0.15rem rgb(0 0 0 / 8%);
    position: relative;
    border-radius: 0.875rem;
    z-index:100;
}
    .login-form .language {
        position: absolute;
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        border-radius:50%;
        border:solid 1px #ededed;
        padding:2px;
        cursor:pointer;
    }
        .login-form .language .flag-en{
            display:flex;
            width:100%;
            height:100%;
            background:url("/Content/img/en.png") no-repeat;
            background-size:100%;

        }
        .login-form .language .flag-vn{
            display:flex;
            width:100%;
            height:100%;
            background:url("/Content/img/vi.png") no-repeat;
            background-size:100%;

        }
        .login-form .row {
            display: flex;
            flex-direction: row;
        }

.login-form .logo{
    width:150px;
}
label.title {
    color: #164126;
    font-size: 2rem;
    font-weight: 700;
    margin:20px 0;
}
.form-control.txtUserName,
.form-control.txtPassword {
    width: 100%;
    border: solid 1px #ededed;
    height: 35px;
    border-radius: 20px;
    display: flex;
    align-content: center;
    margin-bottom: 20px;
    align-items:center;
}
.form-control input[type="text"],
.form-control input[type="password"] {
    border: none;
    width: 100%;
    padding: 0 0 0 5px;
    background: none;
    outline: none;
    box-sizing: border-box;
    height: 100%;
    font-family: "SVN-Gotham";
}
.form-control.txtUserName::before {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url("/Content/img/carbon_user-avatar-filled-alt.svg") no-repeat left center;
    background-size:100%;
    margin-left:8px;
}
.form-control.txtPassword::before {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url("/Content/img/el_lock-alt.svg") no-repeat left center;
    background-size: 100%;
    margin-left: 8px;
}
.space-between {
    justify-content: space-between;
}
a.fogotPass {
    color: #11a347;
    text-decoration: none;
}
button.btn-login,
a.btn-login {
    margin-top: 30px;
    border: solid 1px #000;
    outline: none;
    padding: 10px 30px;
    font-family: 'SVN-Gotham';
    border-radius: 20px;
    background: #fff;
    color: #000;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    -ms-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-decoration:none;
}
a.btn-login {
    margin-left: 10px;
    background: #ededed;
}
    button.btn-login:hover,
    a.btn-login:hover {
        border: solid 1px #41ad49;
        color: #fff;
        background: #41ad49;
        -ms-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }