@-webkit-keyframes autofill {
 0%,100% {
   color: whitesmoke;
   background: transparent;
 }
}

input:-webkit-autofill {
   -webkit-animation-delay: 1s;
   -webkit-animation-name: autofill;
   -webkit-animation-fill-mode: both;
}

@font-face {
  font-family: Barlow;
  src: url(/Resources/fonts/Barlow/Barlow-Regular.ttf);
}

body {
  font-family: Barlow;
  /* font-size: 12px;
  line-height: 1em; */
}

input {
  background-color: transparent;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 12px;
  color: whitesmoke
}
a{
  text-decoration: none;
}
a .submit {
  cursor: pointer;
}

.user {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
}
.user_options-container {
  position: relative;
  width: 80%;
}
.user_options-text {
  display: flex;
  height: 350px;
  border-radius: 3px;
  /* border: 1px solid #58595b; */
}


.user_options-forms {
  position: absolute;
  top: -10%;
  /* left: 570px; */
  left: 50%;
  width: calc(50% - 30px);
  min-height: 420px;
  background-color: whitesmoke;
  background-color: #58595b;
  border-radius: 3px;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.25);

}

.user_options-forms .forms_title {
  margin-bottom: 45px;
  font-size: 1.5rem;
  font-weight: 500;
}

.user_options-forms .forms_field:not(:last-of-type) {
  margin-bottom: 20px;
}
.user_options-forms .forms_field-input {
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 6px 20px 6px 6px;
  letter-spacing: 0.1rem;
}


.user_options-forms .forms_buttons {
  -webkit-box-pack: justify;
  margin-top: 100px;
}
.user_options-forms {
  letter-spacing: 0.1rem;
  color: whitesmoke;
}

.user_options-forms .forms_buttons-action {
  background-color: rgba(237, 28, 36, 0.8);
  border-radius: 3px;
  padding: 10px 35px;
  font-size: 1rem;
  font-weight: 300;
  color: whitesmoke;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.user_options-forms .forms_buttons-action:hover {
  background-color: rgba(237, 28, 36, 0.4)
}

.user_options-forms .user_forms-login {
  position: absolute;
  top: 70px;
  left: 40px;
  width: calc(100% - 80px);
}
.ml-50{
  margin-left: 50px;
}

.img-login{
  width: 35%;
  margin-left: 8%;
}
