.popup-page-content {
  box-shadow: 0px 0px 8px 2px #000000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  position: fixed;
  top: 0;
  margin:  0 auto;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
}
.popup-fom-content  {
  background: #fff;
  width: 850px;
  margin: 175px 0;
  position: relative;
  display: flex;
  display: -webkit-flex;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 11px 12px 8px #292828;
}
.popup-fom-content h2 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
.popup-fom-content .form-left {
  background: #35414a;
  padding: 20px 40px;
  position: relative;
  width: 100%;
  color: #fff;
}
.popup-fom-content .form-left p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}
.popup-fom-content .form-left span {
  font-weight: 700;
}
.popup-fom-content .form-left .text-2 {
  margin: 20px 0 25px;
}
@media screen and (max-width: 991px) {
  .popup-fom-content {
    margin: 180px 20px;
    flex-direction:  column;
    -o-flex-direction:  column;
    -ms-flex-direction:  column;
    -moz-flex-direction:  column;
    -webkit-flex-direction:  column;
  }
  .popup-fom-content .form-left {
    width: auto;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
  }
}
.login-block {
  width: 100%;
  padding: 20px;
  background: #5d7380;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-block button, .login-block .popup-submit {
  width: 100%;
  height: 40px;
  background: #38c5b5;
  box-sizing: border-box;
  border: 1px solid #38c5b5;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  font-family: Montserrat;
  outline: none;
  cursor: pointer;
  margin: 0;
  border-radius: 0;
}
.login-block button:hover,  .login-block .popup-submit:hover{
  background: #34a79a;
  color: #fff;
}
.hidden {
  display: none;
}
input[type=text], input[type=email]{
  width: 100%;
  padding: 12px 40px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
div.user-name-wrapper {
  position: relative;
}
div.user-name-wrapper .field-suffix{
  position: absolute;
  left: 12px;
  top: 18px;
  color: gray;
}

.popup-page-content {
  z-index: 1000;
}