.grecaptcha-badge {
  display: none;
}

html {
  overflow: hidden;
}

body {
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.g-recaptcha {
  margin: auto;
}

body:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, .95);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.g-recaptcha:before {
  content: "Отметьте галочку 'Я не робот':";
  position: absolute;
  top: 34%;
  background: #fff;
  padding: 40px;
  font: 400 21px/1.6em Arial,Helvetica,sans-serif;
  transform: translateX(-70px);
  height: 250px;
  width: 440px;
  box-sizing: border-box;
  text-align: center;
  z-index: -1;
}

@media screen and (max-width: 460px) {
  .g-recaptcha:before {
    display: block;
    padding: 20px;
    position: relative;
    top: 0;
    font-size: 16px;
    transform: none;
    height: auto;
    width: 302px;
    font-weight: 700;
  }
}