* {
  box-sizing: border-box;
}

body {
  font-family: "open_sansregular", sans-serif;
  font-size: 12px;
  line-height: 1em;
  margin: 0;
}

.login_form_errors{
  color: #e04a4a;
  font-size: 13px;
  margin-top: 5px;
  position: inherit;

}
fieldset{
  border-width: 0;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 25px;
  position: relative;
}

.user-authentication {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  /*background-color: #312b67;*/
  background-color: #f2f2f2;/*#edf1f7;*/
  /*background: url("https://wallpapers.wallhaven.cc/wallpapers/full/wallhaven-371678.jpg") no-repeat center;*/
  /*background-size: cover;*/
}
/*.user-authentication button {*/
  /*!*background-color: transparent;*!*/
  /*padding: 0;*/
  /*border: 0;*/
  /*outline: 0;*/
  /*cursor: pointer;*/
/*}*/

.user-authentication input {
  background-color: transparent;
  padding: 0;
  border: 0;
  outline: 0;
}
.user-authentication input::-webkit-input-placeholder {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  color: #ccc;
}
.user-authentication input:-ms-input-placeholder {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  color: #ccc;
}
.user-authentication input:-ms-input-placeholder {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  color: #ccc;
}
.user-authentication input::placeholder {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  color: #ccc;
}
.user-authentication button[type="submit"] {
  cursor: pointer;
}
.user-authentication .user_options-container {
  position: relative;
  width: 80%;
}
.user-authentication .user_options-text {
  display: flex;
  justify-content: space-between;
  width: 95%;
  background-color: rgba(34, 34, 34, 0.85);
  border-radius: 3px;
}
.user-authentication .user_options-registered,
.user-authentication .user_options-unregistered {
  width: 50%;
  padding: 75px 45px;
  color: #fff;
  font-weight: 300;
}
.user-authentication .user_registered-title,
.user-authentication .user_unregistered-title {
  margin-bottom: 15px;
  font-size: 1.66rem;
  line-height: 1em;
}
.user-authentication .user_registered-text,
.user-authentication .user_unregistered-text {
  font-size: 0.85rem;
  line-height: 1.4em;
  letter-spacing: 0.5px;
}
.user-authentication .user_registered-login,
.user-authentication .user_unregistered-signup {
  margin-top: 30px;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 10px 30px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 0.2rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.user-authentication .user_registered-login:hover,
.user-authentication .user_unregistered-signup:hover {
  color: rgba(34, 34, 34, 0.85);
  background-color: #ccc;
}
.user-authentication .user_options-forms {
  position: absolute;
  top: 50%;
  left: 30px;
  width: calc(50% - 20px);
  /*min-height: 100%;*/
  min-height: 500px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  -webkit-transform: translate3d(100%, -50%, 0);
  transform: translate3d(100%, -50%, 0);
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

/*.user-authentication .sign-up .user_options-forms {*/
  /*min-height: 500px;*/
  /*height: 600px;*/
/*}*/
.user-authentication .user_options-forms .user_forms-login,
.user-authentication .user_options-forms .user_forms-signup,
.user-authentication .user_options-forms .user_forms-forgot {
  position: absolute;
  top: 80px;
  left: 40px;
  width: calc(100% - 80px);
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.user-authentication .user_options-forms .user_forms-login {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.user-authentication .user_options-forms .user_forms-signup {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(120px, 0, 0);
  transform: translate3d(120px, 0, 0);
}
.user-authentication .user_options-forms .user_forms-signup .forms_buttons {
  justify-content: flex-end;
}
.user-authentication .user_options-forms .user_forms-forgot {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(120px, 0, 0);
  transform: translate3d(120px, 0, 0);
}
.user-authentication .user_options-forms .forms_title {
  margin-bottom: 45px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  color: #312b67;
  letter-spacing: 0.1rem;
}

.user-authentication .user_options-forms .forms_field:not(:last-of-type) {
  margin-bottom: 20px;
}
.user-authentication .user_options-forms .forms_field-input {
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 6px 20px 6px 0;
  font-size: 15px;
  font-weight: 300;
  color: #0c0c0c;
  letter-spacing: 0.1rem;
  transition: border-color 0.2s ease-in-out;
}
.user-authentication .user_options-forms .forms_field-input:focus {
  border-color: gray;
}
.user-authentication .user_options-forms .forms_buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
}
.user-authentication .user_options-forms .forms_buttons-forgot {
  letter-spacing: 0.1rem;
  color: #0c0c0c;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}
.user-authentication .user_options-forms .forms_buttons-forgot:hover {
  color: #0c0c0c;
}
.user-authentication .user_options-forms .forms_buttons-action {
  background-color: #312b67;
  border-radius: 3px;
  padding: 10px 35px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  transition: background-color 0.2s ease-in-out;
}
.user-authentication .user_options-forms .forms_buttons-action:hover {
  background-color: #312b67;
}
.user-authentication .user_options-forms .forms_buttons-mb-button {
  display: none;
}
.user-authentication .user_options-forms.show-signup {
  display: block;
  -webkit-transform: translate3d(2%, -50%, 0);
  transform: translate3d(2%, -50%, 0);
}
.user-authentication .user_options-forms.show-signup .user_forms-login {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(-150%, 0%, 0);
  transform: translate3d(-150%, 0%, 0);
}
.user-authentication .user_options-forms.show-signup .user_forms-signup {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.user-authentication .user_options-forms.show-login {
  display: block;
  -webkit-transform: translate3d(2%, -50%, 0);
  transform: translate3d(2%, -50%, 0);
}
.user-authentication .user_options-forms.show-login .user_forms-signup {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(150%, 0%, 0);
  transform: translate3d(150%, 0%, 0);
}
.user-authentication .user_options-forms.show-login .user_forms-login {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.user-authentication .user_options-forms.show-forgotPass {
  display: block;
  -webkit-transform: translate3d(100%, -50%, 0);
  transform: translate3d(100%, -50%, 0);
}
.user-authentication .user_options-forms.show-forgotPass .user_forms-forgot {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.user-authentication .user_options-forms.show-forgotPass .user_forms-signup {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(150%, 0%, 0);
  transform: translate3d(150%, 0%, 0);
}
.user-authentication .user_options-forms.show-forgotPass .user_forms-login {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(-120%, 0, 0);
  transform: translate3d(-120%, 0, 0);
}
.user-authentication .user_options-forms.bounceLeft {
  -webkit-animation: bounceLeft 1s forwards;
  animation: bounceLeft 1s forwards;
}
.user-authentication .user_options-forms.bounceLeft .user_forms-signup {
  -webkit-animation: showSignUp 1s forwards;
  animation: showSignUp 1s forwards;
}
.user-authentication .user_options-forms.bounceLeft .user_forms-login {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(-120px, 0, 0);
  transform: translate3d(-120px, 0, 0);
}
.user-authentication .user_options-forms.bounceRight {
  -webkit-animation: bounceRight 1s forwards;
  animation: bounceRight 1s forwards;
}
@media screen and (max-width: 580px) {
  .user-authentication .user_options-text {
    display: none;
  }
  .user-authentication .user_options-forms {
    width: 96%;
    left: 0;
    min-height: 500px !important;
    -webkit-transform: translate3d(2%, -50%, 0);
    transform: translate3d(2%, -50%, 0);
  }
  .user-authentication .user_options-forms .forms_buttons-mb-button {
    display: block;
    border: 2px solid #312b67;/*#e8716d;*/
    color: #312b67;
    padding: 10px 26px;
    margin: 20px auto;
    font-size: 16px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition-duration: 300ms;
  }
  .user-authentication .user_options-forms .forms_buttons-mb-button:hover {
    background-color: #312b67;
    color: #fff;
  }
  .user-authentication .user_options-forms .forms_title {
    margin-top: 75px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;

  }
}

@media screen and (max-width: 990px) {
  .user-authentication .user_options-container {
    width: 90%;
  }
  .user-authentication .user_options-forms {
    min-height: 360px;
  }
  .user-authentication .user_options-forms .forms_buttons {
    flex-direction: column;
  }
  .user-authentication .user_options-forms .user_forms-login {
    top: 70px;
  }
  .user-authentication .user_options-forms .user_forms-login .forms_buttons-action {
    margin-top: 30px;
  }
  .user-authentication .user_options-forms .user_forms-signup {
    top: 40px;
  }
  .user-authentication .user_options-registered,
  .user-authentication .user_options-unregistered {
    padding: 50px 45px;
  }
}
@media screen and (max-width: 540px) {
  .user-authentication .user_options-forms .user_forms-login {
    top: 20px;
  }
}
@-webkit-keyframes bounceLeft {
  0% {
    -webkit-transform: translate3d(100%, -50%, 0);
    transform: translate3d(100%, -50%, 0);
  }
  50% {
    -webkit-transform: translate3d(-30px, -50%, 0);
    transform: translate3d(-30px, -50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes bounceLeft {
  0% {
    -webkit-transform: translate3d(100%, -50%, 0);
    transform: translate3d(100%, -50%, 0);
  }
  50% {
    -webkit-transform: translate3d(-30px, -50%, 0);
    transform: translate3d(-30px, -50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
}
@-webkit-keyframes bounceRight {
  0% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  50% {
    -webkit-transform: translate3d(calc(100% + 30px), -50%, 0);
    transform: translate3d(calc(100% + 30px), -50%, 0);
  }
  100% {
    -webkit-transform: translate3d(100%, -50%, 0);
    transform: translate3d(100%, -50%, 0);
  }
}
@keyframes bounceRight {
  0% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  50% {
    -webkit-transform: translate3d(calc(100% + 30px), -50%, 0);
    transform: translate3d(calc(100% + 30px), -50%, 0);
  }
  100% {
    -webkit-transform: translate3d(100%, -50%, 0);
    transform: translate3d(100%, -50%, 0);
  }
}
@-webkit-keyframes showSignUp {
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes showSignUp {
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

h1{
  font-size: 28px;
}

h2{
  font-size: 25px;
}
h3{
  font-size: 23px;
}
h4{
  font-size: 20px;
}
h5{
  font-size: 18px;
}
h6{
  font-size: 15px;
}

.btn-facebook{
  background-color: #312b67;
  color: #f3f3f3;
  font-size: 20px;
}
.btn-facebook:hover{
  background-color: #312b67;
  color: #f3f3f3;
}
.btn-submit{
  background-color: #312b67;
  color: #f3f3f3;
  font-size: 20px;
}
.btn-submit:hover{
  background-color: #312b67;
  color: #f3f3f3;
}

.social_login_section{
  margin-top: 10px;
  align-content: center;
}

.btn_sign_up{
  background: none;
  border-color: #c3e3b5;
  color:#f3f3f3;
  font-weight: 500;
  font-size: 20px;
}
.btn_sign_up:hover{
  background-color:#f2f2f2;
  border-color: #c3e3b5;
  color: #303030;
}

.btn_go_home{
  background: none;
  border-color: #c3e3b5;
  color:#f3f3f3;
  font-weight: 500;
  font-size: 20px;
}
.btn_go_home:hover{
  background-color:#f2f2f2;
  border-color: #c3e3b5;
  color: #303030;
}

.font-size15 p{
  font-size: 20px;
}
.mt20{
  margin-top: 20px;
}
