/* CSS Document */
.signup_popup {
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 50%;
  top: 50%;
  width: 400px;
  height: 200px;
  margin-left: -200px;
  margin-top: -100px;
  z-index: 50;
  display: none;
}
.signup-popup-realtext {
  display: table;
  margin: auto;
  height: 100%;
}
.signup-popup-realtext a {
  color: #1488b3;
}
.signup-popup-realtext span {
  font-size: 16px !important;
  display: table-cell;
  vertical-align: middle;
  width: 300px;
}
.signup-popup-text-confirm {
  margin: 20px;
  border: solid 2px rgb(242, 71, 99);
  text-align: center;
  font-size: 16px;
  height: 110px;
}
.signup-popup-text-error {
  margin: 20px;
  border: solid 2px rgb(242, 71, 99);
  text-align: center;
  font-size: 16px;
  height: 110px;
}
.signup-popup-text-success {
  margin: 20px;
  border: solid 2px #28a297;
  text-align: center;
  font-size: 16px;
  height: 110px;
}

.signup-popup-btn {
  text-align: center;
  margin-top: 25px;
}
.signup-popup-btn .cancel {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #ec427e;
  border-radius: 15px;
  padding: 2px 25px;
  margin: 0px 8px;
  cursor: pointer;
  background: #ec427e;
}
.signup-popup-btn .i_agree {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #448ad2;
  border-radius: 15px;
  padding: 2px 25px;
  margin: 0px 8px;
  cursor: pointer;
  background: #448ad2;
}

.signup-popup-btn .cancel:hover {
  background: #37ab91;
  border-color: #37ab91;
  color: #fff;
}
.signup-popup-btn .i_agree:hover {
  background: #37ab91;
  border-color: #37ab91;
  color: #fff;
}
.signup-btn-txt:hover {
  color: #448ad2 !important;
}
.forget-pass-txt:hover {
  color: #448ad2;
}
#background-layer {
  width: 100%;
  position: absolute;
  background-color: black;
  display: none;
  z-index: 10;
  opacity: 0.5;
}
