.logo-main {
    width:100%;
    filter: blur(0.5px);
}

.app-name {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 0.63px;
    line-height: 29px;
}

.app-name-line {
    height: 4px;
    background-image: linear-gradient(92deg, #7396fd 0%, #8768fc 100%);
}

.login-form_header {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}

.login-form {
    width: 100%;
    margin-top:10px;
}

.container-login {
    width: 100%;
    border-radius: 6px;
    background-color: #fff;
    padding: 10px;
}

.button-login {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    background-image: linear-gradient(105deg, #0784eb 0%, #3528e4 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    line-height: 16px;
    margin-top: 10px;
}


.wrap-input {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #d7dae6;
  margin-bottom: 15px;
}

.input-login {
    outline: none;
    border: none;
    width: 100%;
    height: 45px;
    padding-left: 5px;
    color: #9eabbe;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.focus-input{
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.4s;
  background-image: linear-gradient(91deg, #0071ce 0%, #b073fd 100%);
}

.input-login:focus + .focus-input::before {
  width: 100%;
}

.has-val.input-login + .focus-input::before {
  width: 100%;
}

.wrong_auth_data {
    color: #FF6666;
    text-shadow: 0px 0px 14px black;
}
.wrong_auth_data a {
    color: inherit;
    text-decoration: underline;
}