.captcha {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

.captcha__image {
  min-width: 215px;
}

.captcha__inputContainer {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  flex-grow: 1;
}

.captcha__input {
  width: 100%;
}

.bwCaptcha {
  display: flex;
}

.bwContactform .bwCaptcha {
  margin-top: 5px;
  margin-bottom: 10px;
}

.bwCaptcha__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.bwCaptcha__inputContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.bwCaptcha img {
  margin-right: 10px;
}

@media (min-width: 576px) {
  .captcha {
    flex-direction: row;
  }

  .captcha__inputContainer {
    margin-left: 15px;
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .captcha__input {
    max-width: 250px;
  }
}


