body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #fff;
  padding-top: 80px;
}

.logo {
  font-size: 48px;
  font-weight: bold;
}

.logo span:nth-child(1) {
  color: #4285f4;
}
.logo span:nth-child(2) {
  color: #ea4335;
}
.logo span:nth-child(3) {
  color: #fbbc05;
}
.logo span:nth-child(4) {
  color: #34a853;
}
.logo span:nth-child(5) {
  color: #4285f4;
}
.logo span:nth-child(6) {
  color: #ea4335;
}

h2 {
  margin-top: 20px;
  color: #6ec2e6;
}

.captcha-box {
  margin: 30px auto;
  max-width: 300px;
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 365px) {
  .captcha-box {
    max-width: 265px;
  }
}
.checkbox,
.check-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.checkbox {
  border: 2px solid #999;
  border-radius: 4px;
  cursor: pointer;
}

.checkbox.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 3px solid #ccc;
  border-top-color: #555;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  position: absolute;
  top: 1px;
  left: 1px;
}

.check-icon {
  display: none;
  font-size: 28px;
  color: green;
}

.check-icon.active {
  display: block;
  top: -10px;
  left: 5px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.text {
  flex: 1;
  margin-left: 15px;
  text-align: left;
  font-size: 16px;
  color: #333;
}

.recaptcha {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #b5b5b5;
}
.sidebar {
  margin-top: 5px;
  a {
    color: #b5b5b5;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    &:hover {
      text-decoration: underline;
      color: #4285f4;
    }
  }
}
.recaptcha-logo {
  width: 40px;
  height: 40px;
  background: url("/images/recaptcha.png") no-repeat center;
  background-size: contain;
}

#confirmBtn {
  margin-top: 30px;
  padding: 10px 30px;
  font-size: 16px;
  background-color: #4da6ff;
  color: white;
  border-radius: 4px;
  text-decoration: none;
}

#confirmBtn.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
  user-select: none;
}
