html {
  font: 400 16px 'Inter', 'inter', 'Arial', sans-serif;
  -ms-text-size-adjust: 100%;
  line-height: 1.5;
  background: #fff;
  color: #031b4e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

.Background {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  background-size: cover;
  background-image: url('../images/do-bg-image.png');
}

.Content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Captcha-modal {
  z-index: 2;
  background-color: #fff;
  border: 1px solid rgba(91, 105, 134, 0.22);
  border-radius: 24px;
  width: 480px;
  min-height: 486px;
  padding: 24px;
  margin: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 480px) {
  .Captcha-modal {
    margin: 32px 8px;
    min-width: 100%;
  }
}

.Captcha-modal img {
  height: 30px;
  width: 170px;
}

.Captcha-modal p {
  margin: 24px 0;
  text-align: center;
}

.Captcha-modal input[type="submit"] {
  appearance: none;
  margin: 24px 0 0 0;
  overflow: visible;
  font: inherit;
  font-weight: 600;
  color: #fff;
  text-transform: none;
  padding: 0 0.5rem;
  background: #0061eb;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  line-height: 44px;
  height: 48px;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
  float: right;
}

a {
  color: #3387ff;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus {
  color: #1a78ff;
}

a:hover,
a:active {
  outline: 0;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-state {
  align-self: center;
  justify-self: center;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.loading-state > span {
  border: 2px solid rgb(0, 97, 235);
  border-radius: 50%;
  border-bottom-color: transparent;
  height: 1.375rem;
  width: 1.375rem;
  display: inline-block;
  animation: rotation 0.75s 0s linear infinite normal both;
}

.Captcha-target {
  display: none;
}