@font-face {
    font-family: Calibri;
    src: url('../fonts/Calibri/Calibri Light.ttf');
}

@font-face {
    font-family: Calibri;
    src: url('../fonts/Calibri/Calibri Regular.ttf');
}

@font-face {
    font-family: Calibri;
    src: url('../fonts/Calibri/Calibri Bold.TTF');
}

body, html, .breadcrumb, .header-navbar, h1, h2, h3, h4, h5, h6, p, span, a, strong, b {
    font-family: Calibri, sans-serif !important;
    font-style: normal;
    font-weight: 400;
}
/*login*/
.limiter {
  width: 100%;
  margin: 0 auto;
}

.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;
  padding: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.wrap-login {
    width: 500px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 55px 55px 54px 55px;
}

.login-form-img{
    position: relative;
    right: 36%;
    margin-bottom:20px;
}
/*Form*/
.login-form {
    width: 100%;
}

.login-form-title {
    display: block;
    font-size: 30px;
    font-weight:700;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 40px;
}

.login-form a {
    color: #c60020;
    font-weight: 600;
}
/* Input */
.p-t-8 {
    padding-top: 8px;
}
.p-b-31{
    padding-bottom:31px;
}
.wrap-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #d9d9d9;
    margin-bottom: 23px;
}

.label-input{
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
  padding-right: 7px;
}

.input-01 {
    font-size: 16px;
    color: #333333;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 55px;
    background: transparent;
    padding: 0 7px 0 43px;
    border: none;
    border-bottom: 1px solid #d9d9d9;
}
.input-01:focus {
    outline: unset;
}
/*---------------------------------------------*/
.focus-input {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    pointer-events: none;
}

.focus-input::after {
  content: attr(data-symbol);
  font-family: Material-Design-Iconic-Font;
  color: #adadad;
  font-size: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: calc(100% - 20px);
  bottom: 0;
  left: 0;
  padding-left: 13px;
  padding-top: 3px;
}

.focus-input::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: #7f7f7f;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.input-01:focus + .focus-input::before {
  width: 100%;
}

.has-val.input-01 + .focus-input::before {
    width: 100%;
}

.input-01:focus + .focus-input::after {
    color: #c60020;
}

.has-val.input-01 + .focus-input::after {
    color: #c60020;
}


/*Button*/
.login-form-btn {
    border: none;
    padding: 0px;
    border-radius: 25px;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    width: 100%;
    height: 50px;
    font-weight:500;
    background: rgb(0,173,145);
    background: -webkit-linear-gradient(90deg, rgba(0,198,166,1) 0%, rgba(0,173,145,1) 100%);
    background: -o-linear-gradient(90deg, rgba(0,198,166,1) 0%, rgba(0,173,145,1) 100%);
    background: -moz-linear-gradient(90deg, rgba(0,198,166,1) 0%, rgba(0,173,145,1) 100%);
    background: linear-gradient(90deg, rgba(0,198,166,1) 0%, rgba(0,173,145,1) 100%);
}
.login-form-btn:hover {
    background: -webkit-linear-gradient(90deg, rgba(0,173,145,1) 100%, rgba(0,198,166,1) 0%);
    background: -o-linear-gradient(90deg, rgba(0,173,145,1) 100%, rgba(0,198,166,1) 0%);
    background: -moz-linear-gradient(90deg, rgba(0,173,145,1) 100%, rgba(0,198,166,1) 0%);
    background: linear-gradient(90deg, rgba(0,173,145,1) 100%, rgba(0,198,166,1) 0%);
}
.wrap-login-form-btn:hover .login-form-bgbtn {
  right: 0;
}


/*Alert validate*/

.validate-input {
  position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    bottom: calc((100% - 20px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 2px;
    pointer-events: none;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: right;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f06a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 16px;
    bottom: calc((100% - 20px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 8px;
}
.alert-validate:before {
    visibility: visible;
    opacity: 1;
    width: 100%;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/* checkbox and forget password*/
.flex-sb-m {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.w-full {
    width: 100%;
}

.p-b-24 {
    padding-bottom: 24px;
}

.p-t-3 {
    padding-top: 3px;
}

.checkbox-label {
    font-weight: 600;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
    padding-right:7px;
}
/*Responsive*/

@media (max-width: 576px) {
  .wrap-login{
    padding-left: 15px;
    padding-right: 15px;
  }
} 