@font-face {
  font-family: "Recaptcha";
}
.captcha-card {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  form div.captcha-card {
    flex-direction: column;
    align-items: start;
  }
}
form div.captcha-card input[type="text"] {
  width: 50%;
  box-sizing: border-box;
  height: 55px;
  border-radius: 4px;
  border: 1px solid #ececec;
  background-color: #fff;
}

form div.captcha-card .captcha-container {
  display: flex;
  justify-content: start;
  column-gap: 45px;
  margin: 0;
  flex-direction: row-reverse;
  align-items: center;
}

form div.captcha-card .captcha-container > div {
  background-color: #ffffff !important;
}

form div.captcha-card .captcha p {
  border: none;
  letter-spacing: 0.5px;
  font-size: 30px !important;
  color: #cf1d1d;
  padding: 20px 0;
  margin: 0;
  margin-right: 15px !important;
  font-family: Recaptcha;
  border-radius: 0;
  width: fit-content;
  text-transform: none !important;
  padding: 20px;
}

form div.captcha-card .captcha-container p.cant-read {
  font-size: 16px !important;
  line-height: 22px !important;
  line-height: 1.4;
  color: #fff;
  font-family: sans-serif;
  text-transform: none;
  text-align: right;
  margin: 0;
}

form div.captcha-card .captcha-container span.reset-captcha {
  color: #ff1c00;
  transition: 400ms;
}

form div.captcha-card .captcha-container span.reset-captcha:hover {
  color: #ff1c00;
  cursor: pointer;
}

form div.captcha-card canvas {
  border-radius: 4px;
}

@media only screen and (max-width: 576px) {
  form div.captcha-card .captcha-container {
    flex-direction: row-reverse;
  }

  form div.captcha-card .captcha-container p.cant-read {
    margin-top: 15px;
    margin-bottom: 0;
    padding-left: 10px;
  }
}
