@font-face {
    font-family: 'vip_hakm_thinvip_hakm';
    src: url('../fonts/vip-hakm-thin-webfont.eot');
    src: url('../fonts/vip-hakm-thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/vip-hakm-thin-webfont.woff2') format('woff2'),
         url('../fonts/vip-hakm-thin-webfont.woff') format('woff'),
         url('../fonts/vip-hakm-thin-webfont.ttf') format('truetype'),
         url('../fonts/vip-hakm-thin-webfont.svg#vip_hakm_thinvip_hakm') format('svg');
    font-weight: normal;
    font-style: normal;
}
body {
    /* font-family: vip_hakm_thinvip_hakm; */
    background: rgb(2,69,109);
    background: -moz-linear-gradient(90deg, rgba(2,69,109,1) 0%, rgba(19,95,136,1) 27%, rgba(58,191,240,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(2,69,109,1) 0%, rgba(19,95,136,1) 27%, rgba(58,191,240,1) 100%);
    background: linear-gradient(90deg, rgba(2,69,109,1) 0%, rgba(19,95,136,1) 27%, rgba(58,191,240,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#02456d",endColorstr="#3abff0",GradientType=1);
    /*background-image: url(../images/bkgd.svg);*/
    /*background-size: cover;*/
}
.auth-area {
    float: none;
    margin: 3% auto;
    background-color: #fff;
    padding: 15px 46px;
    border-radius: 25px;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,.5);
    box-shadow: 0 5px 15px 0 rgba(0,0,0,.5);
    background-image: url(../images/win-bkgd.svg);
    background-size: auto 80px;
    background-repeat: no-repeat;
    background-position: bottom;
    padding-bottom: 70px;
}
.bluecord-logo {
    height: 300px;
    width: auto;
}
.separator-line {
    background: rgb(2,69,109);
    background: -moz-linear-gradient(90deg, rgba(2,69,109,1) 0%, rgba(19,95,136,1) 27%, rgba(58,191,240,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(2,69,109,1) 0%, rgba(19,95,136,1) 27%, rgba(58,191,240,1) 100%);
    background: linear-gradient(90deg, rgba(2,69,109,1) 0%, rgba(19,95,136,1) 27%, rgba(58,191,240,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#02456d",endColorstr="#3abff0",GradientType=1);
    height: 0.1px;
}
.auth-form {
    padding: 0px 24px;
    margin-top: 36px;
}
.auth-form input {
    border-radius: 25px;
    padding: 0.7rem 2rem;
    padding-left: 3rem;
    border: 1px solid #135f88;
    color: #135f88;
}
.auth-form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #135f88;
    opacity: 1; /* Firefox */
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

.input-container {
    position:relative;
}

.input-container:before{
    content: "";
    position: absolute;
    top: 15px;
    left: 24px;
}
.email-input:before {
    height: 17px;
    width: 11px;
    background: url(../images/user.svg) no-repeat;
    background-size: 11px auto;
}
.password-input:before {
    top: 16px;
    height: 16px;
    width: 13px;
    background: url(../images/password.svg) no-repeat;
    background-size: 13px auto;
}
.auth-form .form-check-label {
    color: #135f88;
    font-size: 0.9rem;
    font-style: oblique;
}
.auth-form .form-check-label:hover {
    cursor: pointer;
}
.forget-password-link {
    float: right;
    color: #135f88;
    font-size: 0.9rem;
    font-style: oblique;
}
.forget-password-link:hover {
    color: #2061ad;
    text-decoration: none;
}
.btn-auth {
    position: relative;
    border-radius: 25px;
    padding: 0.4rem 1rem;
    width: 90%;
    margin: 0 auto;
    margin-top: 32px;

    border-color: #fff;
    background: rgb(2,69,109);
    background: -moz-linear-gradient(193deg, rgba(2,69,109,1) 0%, rgba(19,95,136,1) 27%, rgba(58,191,240,1) 100%);
    background: -webkit-linear-gradient(193deg, rgba(2,69,109,1) 0%, rgba(19,95,136,1) 27%, rgba(58,191,240,1) 100%);
    background: linear-gradient(193deg, rgba(2,69,109,1) 0%, rgba(19,95,136,1) 27%, rgba(58,191,240,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#02456d",endColorstr="#3abff0",GradientType=1);

    z-index: 1;
}

.btn-auth::before {
    position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 25px;
    transition: width 2s;
    background: rgb(2,69,109);
    background: -moz-linear-gradient(156deg, rgba(2,69,109,1) 0%, rgba(19,95,136,1) 27%, rgba(58,191,240,1) 100%);
    background: -webkit-linear-gradient(156deg, rgba(2,69,109,1) 0%, rgba(19,95,136,1) 27%, rgba(58,191,240,1) 100%);
    background: linear-gradient(156deg, rgba(2,69,109,1) 0%, rgba(19,95,136,1) 27%, rgba(58,191,240,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#02456d",endColorstr="#3abff0",GradientType=1);

    z-index: -1;
    transition: opacity 0.5s linear;
    opacity: 0;
}
.btn-auth:hover::before {
    opacity: 1;
}

.copyright-footer {
    color: white;
}

.copyright-footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bolder;
}

.copyright-footer a:hover {
    color: #02456d;
}

@media (max-width: 576px) {
    .auth-area {
        margin: 11% auto;
        padding: 10px;
        padding-bottom: 65px;
    }
}
