.captcha {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
    background-color: #f1f1f1;
    border-radius: 10px;
}
.captcha i {
    margin-right: 2rem;
    font-size: 16px;

}
.fa-refresh:before {
    content: "\f021";
    margin-right: 2rem;
    color:gray;
    cursor:pointer;
}
.invalid-feedback{
    color:#fff!important;
    padding: 0.3rem 3rem;
    font-weight:600;
    display:block!important;
}
.submit-btn{
    background-color: #415EB0!important;
    border-radius: 15px!important;
    color:#fff!important;
    width: 50%;
    padding:0.5rem!important;
    transition:all 0.5s ease!important;
    font-size:1.2rem!important;
    box-sizing: border-box;
    font-weight:600!important;
}
.submit-btn:hover{
    width:55%;
}
.animate-charcter
{
  height:55px;
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #fc5126ee 67%,
    #0284fe 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 5s linear infinite;
  display: inline-block;
      font-size: 2.5rem;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
/****** responsive ******/
@media (max-width: 1100px) {
    .login{
        background-size: 100%100%!important;
    }
    div.loginForm {
        padding: 0px 20px!important;
        margin: 13px 40px!important;
    }
}
@media (max-width: 768px) {
    .login{
        background: #E09202!important;
        width: 100%!important;
    }
    div.loginForm {
        padding: 50px;
        margin: 30px auto!important;
        width: 100%;
    }
    .loginForm h1{
        text-align:center;
        width:100%;
    }
    form div{
        margin:auto;
    }
    .submit-btn{
        display:block!important;
        margin: auto;
    }
}