
/* Plaveooshop  login style */
#page_auth_container {
  width: 100%;
  height: 100vh;
  background: url("../images/login-bg.jpg") center ;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

#form_auth_container {
  display: flex;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  height: 360px;
  transition: 0.3s ease;
  width: 492px;
  margin-top: 6%;
  flex-direction: column;
  color: rgb(127,127,127);
  z-index: 1000;
}
#form_auth_container.with-error {
  height: 400px;
}
#form_auth_container .form-content{
  display: flex;
  height: 100%;
  width: 492px;
}


#form_auth_container.switch {
  /* height: 368.4px; */
  height: 590px;
}
#form_auth_container.switch.with-error {
  height: 630px;
}
#form_auth_container #logo {
  background: #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 25px;
  box-sizing: border-box;
  width: 142px;
  transition: 0.5s cubic-bezier(1, 0, 0, 1);
}

#form_auth_container #logo img {
  max-width: 100%;
  max-height: 100%;
}

#form_auth_container #forms {
  position: relative;
  overflow: hidden;
  transition: 0.5s cubic-bezier(1, 0, 0, 1);
}

#form_auth_container #forms:before {
  content: "";
  background: url("../images/login-bg.jpg") center fixed;
  background-size: cover;
  position: absolute;
  display: block;
  width: 150%;
  top: -20px;
  left: -20px;
  height: 150%;
  box-shadow: inset 0 0 0 300px rgba(0, 0, 0, 0.5);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

#form_auth_container #forms form {
  position: relative;
  z-index: 2;
  padding: 25px;
  box-sizing: border-box;
  width: 350px;
  transition: 0.3s ease;
}

#form_auth_container #forms.forgot {
  width: 0 !important;
  flex-basis: 0 !important;
}

#form_auth_container #why_reg {
  position: absolute !important;
  background: #fff;
  z-index: 3 !important;
  padding: 58px 0 59px 0 !important;
  min-width: 0 !important;
  width: 0 !important;
  overflow: hidden;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.4);
  transition-delay: 0.2s !important;
}

#form_auth_container #why_reg h1 {
  color: #444;
}

#form_auth_container #why_reg ul {
  padding: 0 15px;
  margin: 0;
}

#form_auth_container why_reg ul li {
  list-style: none;
  font-weight: 500;
  margin-bottom: 10px;
}

#form_auth_container #why_reg a {
  color: #444;
  text-align: left;
  padding-left: 15px;
  font-size: 14px;
}

#form_auth_container #why_reg .fade_up {
  position: relative;
  top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

#form_auth_container #why_reg.why_register {
  min-width: 350px !important;
  width: 350px !important;
  padding: 55px 25px 90px 25px !important;
  transition-delay: 0s !important;
}

#form_auth_container #why_reg.why_register > .fade_up {
  top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition-delay: 0.5s;
}

#form_auth_container #forgot {
  position: absolute !important;
  background: #fff;
  z-index: 3 !important;
  padding: 58px 0 59px 0 !important;
  min-width: 0 !important;
  width: 0 !important;
  overflow: hidden;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.4);
  transition-delay: 0.2s !important;
}

#form_auth_container #forgot .fade_up {
  position: relative;
  top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

#form_auth_container #forgot h1 {
  color: #444;
  font-size: 28px;
}

#form_auth_container #forgot p {
  color: #444;
}

#form_auth_container #forgot input[type="email"] {
  color: #444;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

#form_auth_container #forgot input[type="email"]:focus {
  box-shadow: inset 0 -2px 0 #444;
}

#form_auth_container #forgot a {
  color: #444;
}

#form_auth_container #forgot.forgot {
  min-width: 350px !important;
  width: 350px !important;
  padding: 60px 25px 61px 25px !important;
  transition-delay: 0s !important;
}

#forgot.forgot > .fade_up {
  top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition-delay: 0.5s;
}

#form_auth_container #login {
  position: relative;
  left: 0;
  transition-delay: 0.1s !important;
}

#form_auth_container #login.switch {
  left: -350px;
  transition-delay: 0s !important;
}

#form_auth_container #register {
  position: absolute !important;
  top: 0;
  right: -350px;
  transition-delay: 0s;
}

#form_auth_container #register.switch {
  right: 0;
  transition-delay: 0.1s;
}

#form_auth_container .form_head {
  padding-bottom: 15px;
  text-align: center;
}

#form_auth_container .form_head h1 {
    margin: 0;
    color: #eee;
    font-weight: 400;
    font-size: 30px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

#form_auth_container .form_head p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: rgb(127,127,127);
}

#form_auth_container .form_div.pull_top.has-error {
  margin-top: -10px;
}
#form_auth_container .form_div {
    margin-bottom: 5px;
}
#form_auth_container .form_div.terms {
    margin-bottom: -10px;
    margin-top: 10px;

}

#form_auth_container .form_div input[type="text"], 
#form_auth_container .form_div input[type="email"], 
#form_auth_container .form_div input[type="password"] {
  background: transparent;
  border: none;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.4);
  padding: 5px 15px;
  font-weight: 500;
  color: #fff;
  transition: 0.2s ease;
  margin: 10px 0;
}

#form_auth_container .form_div input[type="text"]:focus, 
#form_auth_container .form_div input[type="email"]:focus, 
#form_auth_container .form_div input[type="password"]:focus {
  box-shadow: inset 0 -2px 0 #fff;
}

#form_auth_container .form_div button[type="submit"] {
    width: 100%;
    padding: 10px 0;
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s ease;
    font-family: 'Oswald', sans-serif;
    margin-top: 30px;
}

#form_auth_container .form_other {
    display: flex;
    padding-bottom: 17px;
    justify-content: center;
    margin-top: 20px;
}

#form_auth_container .form_other a {
    width: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    opacity: 0.5;
    font-weight: 700;
    text-align: center;
    transition: 0.2s ease;
}

#form_auth_container .form_other a:hover {
  opacity: 1;
}
#form_auth_container .field-error {
  color: red !important;
  font-size: 90%;
  margin-bottom: -10px;
}


@media only screen and (max-width: 539px)
{
	#form_auth_container {
    width: 480px;
    height: auto;
  }
	#form_auth_container .form-content{
    width: 480px;
  }
}
@media only screen and (max-width: 479px)
{
  #page_auth_container {
    margin: auto;
    height: auto;
  }
  #form_auth_container {
    width: 90%;
    height: 470px;
  }
  #form_auth_container.with-error {
    height: 530px;
  }
  #form_auth_container #logo {
    display: none;
  }
  #form_auth_container .form-content{
    width: 100%;
    flex-wrap: wrap;
  }
  #form_auth_container #forms {
    margin: auto;
  }
  #form_auth_container.switch #forms {
    height: 600px;
  }
  #form_auth_container #forms form {
    width: 100%;
  }
  #form_auth_container #forgot.forgot {
    width: 100% !important;
    min-width: unset !important;
  }
}
@media only screen and (max-width: 400px)
{
  #form_auth_container.switch,
  #form_auth_container.switch.with-error {
    height: 700px;
    margin-top: auto;
  }
  
  #form_auth_container.switch #forms {
    /* height: auto; */
    
  }
}