#captcha-modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
#captcha-wrapper {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  width: 570px;
  box-shadow: 0 4px 8px 5px rgba(0, 0, 0, 0.2), 0 6px 20px 10px rgba(0, 0, 0, 0.19);
  border-radius: 5px;
}
#captcha-iframe {
  width: 500px;
  height: 152px;
}
#captcha-close {
  color: #5a5a5a;
  float: right;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.25;
  padding: 7px;
  text-align: center;
  border: 2px solid #aaaaaa25;
  border-radius: 8px;
}
#captcha-close:hover,
#captcha-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #aaaaaa45;
  border-radius: 8px;
  background-color: #f7f7f7;
}
#captcha-status {
  padding: 9px;
  color: #ff0000;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.25;
}