
/* Plaveooshop  login style */
#pageContainer {
  width: 100%;
  min-height: 60vh;
  background: url("../images/login-bg.jpg") center ;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

#formContainer {
    display: flex;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    min-height: 360px;
    transition: 0.3s ease;
    min-width: 492px;
    max-width: 492px;
    padding: 3% 0 3% 0;
   
}
#formContainer.switch {
  height: 368.4px;
}

#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);
}
#logo img {
  width: 100px;
  height: auto;

}

#forms {
  position: relative;
  overflow: hidden;
  transition: 0.5s cubic-bezier(1, 0, 0, 1);
}
#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);
}
#forms form {
  position: relative;
  z-index: 2;
  padding: 25px;
  box-sizing: border-box;
  min-width: 350px;
  transition: 0.3s ease;
}
#forms.forgot {
  width: 0 !important;
  flex-basis: 0 !important;
}

#whyReg {
  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;
}
#whyReg h1 {
  color: #444;
}
#whyReg ul {
  padding: 0 15px;
  margin: 0;
}
#whyReg ul li {
  list-style: none;
  font-weight: 500;
  margin-bottom: 10px;
}
#whyReg a {
  color: #444;
  text-align: left;
  padding-left: 15px;
  font-size: 14px;
}
#whyReg .fadeUp {
  position: relative;
  top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
#whyReg.whyRegister {
    min-width: 350px !important;
    width: 350px !important;
    padding: 55px 25px 90px 25px !important;
    transition-delay: 0s !important;
}
#whyReg.whyRegister > .fadeUp {
  top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition-delay: 0.5s;
}

#recover_form {
  position: absolute !important;
  z-index: 3 !important;
  padding: 0px 0 59px 0 !important;
  min-width: 0 !important;
  overflow: hidden;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.4);
  transition-delay: 0.2s !important;
}
#recover_form .fadeUp {
  position: relative;
  top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  min-height:348px!important;
}
#recover_form h1 {
  color: #444;
  font-size: 28px;
}
#recover_form p {
  color: #444;
}
#recover_form input[type="email"] {
  color: #444;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  padding-right: 5px;
}
#recover_form input[type="email"]:focus {
  box-shadow: inset 0 -2px 0 #444;
}
#recover_form a {
  color: #444;
}
#recover_form.forgot {
  min-width: 350px !important;
  width: 350px !important;
  padding: 60px 25px 61px 25px !important;
  transition-delay: 0s !important;
}
#recover_form.forgot > .fadeUp {
  top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition-delay: 0.5s;
}

#login-form {
  position: relative;
  left: 0;
  transition-delay: 0.1s !important;
}

.sign-form {
  margin-top:1rem;
}


.formHead {
  padding-bottom: 15px;
  text-align: center;
}
.formHead h1 {
    margin: 0;
    color: #eee;
    font-weight: 400;
    font-size: 30px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.formHead p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  opacity: .5;
}
.reg_disabled{
	display:flex;
	flex-wrap: wrap;
}
.reg_disabled h2,
.reg_disabled strong{
	margin:1rem;
}

.formDiv {
    margin-bottom: 5px;
}
.formDiv input[type="text"], .formDiv input[type="email"], .formDiv input[type="password"] {
  background: #969595;
  border: none;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.4);
  padding: 15px;
  font-weight: 500;
  color: #fff;
  transition: 0.2s ease;
}
#recover_form .formDiv input[type="text"],#recover_form  .formDiv input[type="email"]{
	background: #f3f3f3;
}

.formDiv input[type="text"]:focus, .formDiv input[type="email"]:focus, .formDiv input[type="password"]:focus {
  box-shadow: inset 0 -2px 0 #fff;
}
.formDiv input[type="submit"],
.formDiv button[type="submit"] {
    width: 100%;
    padding: 10px 0;
    color: #fff;
    font-weight: 500;
    border: none;
    background: #ff4d02;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s ease;
    font-family: 'Oswald', sans-serif;
    margin-top: 30px;
}
.formDiv input[type="submit"]:hover,
.formDiv button[type="submit"]:hover {
  background: #2c551a;
}

.formOther {
    display: flex;
    padding-bottom: 17px;
}
.formOther a {
    width: 50%;
    /* color: #fff; */
    text-decoration: none;
    font-size: 10px;
    opacity: 0.5;
    font-weight: 700;
    text-align: center;
    transition: 0.2s ease;
}
.formOther a:hover {
  opacity: 1;
}
.specailcolorpickerclass{
	color: #636262;
	
}


@media only screen and (max-width: 575px) {
    
    #formContainer{
        display: block;
        min-width: 100%!important;
        height: 750px!important;
    }
   
  /*   .container_top{
      margin-left: 8%;
    } */
    #formContainer, #forms {
        width: 100%;
    }

    #forms:before {
      box-shadow: inset 0 0 0 500px rgb(0 0 0 / 50%);
    }
    #logo{
        height: 50px;
         min-width: 80%!important;
        width: auto!important;
    }
    #signup-form{
        position: unset!important;
    }
    #login-form{
        position: unset!important;
    }
    #forms #signup-form {
      min-width: 100%!important;
    }
    #recover_form.forgot{
       min-width: 100%!important;
    }
    #forms #login-form {
      min-width: 100%!important;
    }
}
@media only screen and (max-width: 400px) {
    #formContainer, #forms {
      width: 100%!important;
    }
}
.hidden {
    display: none !important;
    visibility: hidden !important;
}
#recover_note{
    color:#4782b5;
}