.form_auth_logo{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  /* background-color: #205991; */
  background-image: url(svg/logo.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.form_container{
  background-color: #0a1222;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form_container::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(50% - 8vh);
  background-color: #222d42;
}

.form{
  position: relative;
  z-index: 10;
  width: calc(100% - 60px);
  max-width: 480px;
  background-color: #151f31;
  border-radius: 2rem;
  box-sizing: border-box;
  padding: 3rem;
}

.form_line{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}

.form_line.ll{
  justify-content: center;
}

.form_line.hm{
  margin-bottom: 40px;
  justify-content: center;
}

.form_line:last-child{
  margin-bottom: 0;
}

.form_line h1{
  font-size: 24px;
}

.inp{
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  padding: 0 15px;
  background-color: #222d42;
  border: 1px solid #2c3950;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 50px;
  border-radius: 30px;
  outline: none;
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 20px auto;
  transition: all .3s;
}

.inp.user{
  background-image: url(svg/user.svg);
}

.inp.pass{
  width: calc(100% - 50px);
  border-radius: 30px 0 0 30px;
  background-image: url(svg/pass.svg);
}

.showpass{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background-color: #222d42;
  border-radius: 0 30px 30px 0;
  box-sizing: border-box;
  border: 1px solid #2c3950;
  cursor: pointer;
  background-image: url(svg/eye.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
}

.showpass.show::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 18px;
  background-color: #fff;
  margin-top: -9px;
  transform: rotate(45deg);
}

.inp:focus,
.inp:hover{
  background-color: rgba(0, 135, 113, 0.3);
  border-color: #3ad3ba;
}

.inp::-webkit-input-placeholder{opacity: 1; transition: opacity 0.3s ease;}
.inp::-moz-placeholder{opacity: 1; transition: opacity 0.3s ease;}
.inp:-moz-placeholder{opacity: 1; transition: opacity 0.3s ease;}
.inp:-ms-input-placeholder{opacity: 1; transition: opacity 0.3s ease;}
.inp:focus::-webkit-input-placeholder{opacity: 0; transition: opacity 0.3s ease;}
.inp:focus::-moz-placeholder{opacity: 0; transition: opacity 0.3s ease;}
.inp:focus:-moz-placeholder{opacity: 0; transition: opacity 0.3s ease;}
.inp:focus:-ms-input-placeholder{opacity: 0; transition: opacity 0.3s ease;}

.btn_container{
  position: relative;
  width: 100%;
  background-image: linear-gradient(rgba(13, 14, 33, 0), rgba(13, 14, 33, 0)), radial-gradient(circle at left top, #006655, #009980, #006655) !important;
  border-radius: 3em;
  color: #fff;
  background-color: #0a7557;
  border: 2px double transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: 300%;
  width: 100%;
  z-index: 1;
}

.btn_container::before{
  position: absolute;
  content: "";
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  z-index: -1;
  background: inherit;
  background-size: inherit;
  border-radius: 4em;
  opacity: 0;
  transition: 0.5s;
}

.btn_container:hover{
  animation: wave-btn-tara 4s ease infinite;
}

.btn_container:hover::before{
  opacity: 1;
  filter: blur(20px);
  animation: wave-btn-tara 8s linear infinite;
}

@keyframes wave-btn-tara {
  to {
    background-position: 300%;
  }
}

.btn{
  width: 100%;
  font-size: 14px;
  color: #fff;
  text-align: center;
  background-image: linear-gradient(rgba(13, 14, 33, 0.45), rgba(13, 14, 33, 0.35));
  border-radius: 2rem;
  border: none;
  outline: none;
  background-color: transparent;
  height: 46px;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
  padding: 0 15px;
  animation: none;
  background-position-x: 0;
  box-shadow: none;
}

.waves {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  height: 16vh;
  margin-top: -8vh;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  fill: #222d42;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 4s;
  opacity: 0.2;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 7s;
  opacity: 0.4;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 10s;
  opacity: 0.6;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 13s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}