.logo-title{
    font-size: 20px;
    text-shadow: -1px 2px 3px #a2a3a8;
    color: #3a57e8;
    text-align:center;
    margin-top:10px;
}
.sign-tt{
    font-size:25px;
}
.form-card{
    overflow: hidden;
    position: relative;
    height:470px;
}
.form-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, transparent, #3a57e8, #3a57e8);
  transform-origin: bottom right;
  animation: animate 6s linear infinite;
}
.form-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, transparent, #3a57e8, #3a57e8);
  transform-origin: bottom right;
  animation: animate 6s linear infinite;
  animation-delay: -3s;
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.inputBox {
  position: relative;
  width: 100%;
  margin-top: 35px;
}
.inputBox input {
  position: relative;
  width: 100%;
  padding: 20px 10px 10px;
  background: transparent;
  border: none;
  outline: none;
  color: #23242a;
  font-size: 1em;
  letter-spacing: 0.5em;
  z-index: 10;
}
.inputBox span {
  position: absolute;
  left: 0;
  padding: 20px 0px 10px;
  font-size: 1em;
  color: #8f8f8f;
  pointer-events: none;
  letter-spacing: 0.05em;
  transition: 0.5s;
}
.inputBox input{
    color:#3a57e8;
}
.inputBox input:valid ~ span,
.inputBox input:focus ~ span {
  color: #3a57e8;
  transform: translateX(0px) translateY(-47px);
  font-size: 1em;
}
.inputBox i {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border:1px solid #3a57e8;
  border-radius: 4px;
  transition: 0.5s;
  pointer-events: none;
}
.inputBox input:valid ~ i,
.inputBox input:focus ~ i {
  height: 44px;
}

.login__form {
  position: absolute;
  inset: 2px;
  border-radius: 8px;
  background: #fff;
  z-index: 10;
  padding: 25px;
  display: flex;
  flex-direction: column;
}
.submit_btn{
  border: none;
  outline: none;
  background: #3a57e8;
  padding: 11px 25px;
  width: auto;
  margin-top: 25px;
  border-radius: 4px;
  font-weight: 400;
  color:#fff;
  cursor: pointer;
  transition:all 0.3s;
}
.submit_btn:hover
.submit_btn:active {
  opacity: 0.8;
}
.client__logo{
    text-align:center;
}
.client__logo h2{
    font-size: 22px;
    color: #0b153a;
    text-shadow: -1px 1px 3px #6e6464;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: bold;
}
