/* @Login */
.login .main-banner div {
    top: 0;
    width: 100%;
    height: 80px;
    background-repeat: no-repeat;
}
.login .login-wrap .row {
    display: flex;
    justify-content: center;
}
.login .login-wrap .main-title {
    margin-bottom: 35px;
    color: var(--black-color);
}
.login .login-wrap .main-description {
    margin-bottom: 35px;
    color: var(--desc-color);
}

.login .wrap-col {
    margin: 100px 0px;
}

.login input:focus ~ .floating-label,
.login input:not(:focus):valid ~ .floating-label{
    color: var(--desc-color);
    top: -10px;
    left: 27px;
    font-size: 13px;
    opacity: 1;
    padding: 0px 5px;
    height: 20px;
    width: auto;
    text-align: center;
    background-color: var(--white-color);
}
.login .form-control:focus {
    border-color: darkgray;
    box-shadow: 0 0 0 0.2rem transparent !important;
}
.login .form-control {
    height: 55px;
}

.login .floating-label {
    color: var(--desc-color);
  position: absolute;
  pointer-events: none;
  left: 30px;
  top: 15px;
  transition: 0.3s ease all;
}
.login .floating-label span {
    color: red;
}

.login form .col-12 {
    margin-bottom: 15px;
}

.login .login-wrap .show-hide {
    right: 30px;
    top: 18px;
    cursor: pointer;
    font-weight: bold;
    position: absolute;
    color: var(--blue-color); 
}
.login #hide {
    display: none;
}
.login form button {
    width: 100%;
    height: 55px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    border-radius: 5px;
    color: var(--white-color);
    background-color: var(--blue-color);
}
.login form button:hover {
    background-color: var(--green-color);
}

.half-circle-spinner, .half-circle-spinner * {
    box-sizing: border-box;
  }

  .half-circle-spinner {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: relative;
  }

  .half-circle-spinner .circle {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: calc(30px / 10) solid transparent;
  }

  .half-circle-spinner .circle.circle-1 {
    border-top-color: #fff;
    animation: half-circle-spinner-animation 1s infinite;
  }

  .half-circle-spinner .circle.circle-2 {
    border-bottom-color: #fff;
    animation: half-circle-spinner-animation 1s infinite alternate;
  }

   .col-12 .error{
    color: red;
   }

  @keyframes half-circle-spinner-animation {
    0% {
      transform: rotate(0deg);

    }
    100%{
      transform: rotate(360deg);
    }
  }
.col-6 .error{
    font-size: 12px;
    color: var(--red-color);
}
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 20px;
  }
  .lds-ellipsis div {
    position: absolute;
    width: 20%;
    height: 62%;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
  
/* iPad */
@media(max-width: 769px) {
    .login .wrap-col {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .login .wrap-col {
        margin: 50px 0px;
    }
}

  /* Mobile */
  @media(max-width: 576px) {
      .login .main-banner {
          display: none;
      }
    .login .wrap-col {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .login .wrap-col .col-12 {
        padding: 0px;
    }
    .login .wrap-col {
        margin: 75px 0px 0px;
    }
    .login .login-wrap .main-description ,
    .login .login-wrap .main-title {
        margin-bottom: 20px;
    }
  }