/**
 * The following styles are for our example message. Change these as desired.
 */
.custom-message-container {
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  padding: 20px;
}

.custom-message-text {
  color: #3A3B3F;
  font-family: "Source Sans Pro", Arial, "Helvetica Neue", Helvetica,sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  margin: 2px auto;
}

/**
 * The following styles are for the captcha challenge.
 */
#sec-if-cpt-container.custom-captcha-container {
  width: 300px;
  margin: 10px auto;
}

#sec-if-cpt-container input {
  background-color: orange;
  border: 0;
  border-radius: 8px;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  cursor: pointer;
}

#sec-if-cpt-container input:hover {
  background-color: white;
  color: black;
  border: 2px solid orange;
}