body {
  background: #f7f7f7;
  font-family: "Poppins", sans-serif;
  /* font-family: "Poppins", Arial, sans-serif; */
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.captcha-container {
  background: #fff;
  max-width: 350px;
  width: 90%;
  margin: 40px auto;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 2px 16px rgba(41, 42, 66, 0.10);
  /* text-align: center; */
  border: 1px solid #eceeef;
}

.captcha-container img {
  margin-bottom: 18px;
  border: 1px solid #eceeef;
  width: 100%;
  height: auto;
}

.captcha-container p {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #26272b;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

.captcha-container input[type="text"] {
  /* width: 100%; */
  padding: 10px;
  margin-bottom: 18px;
  border: 1px solid #c4c4c4;
  font-size: 16px;
  background: #f7f7f7;
  transition: border-color 0.2s;
}

.captcha-container input[type="text"]:focus {
  border-color: #a195ff;
  outline: none;
}

.captcha-container button {
  background: #a195ff;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.captcha-container button:hover {
  background: #26272b;
}

.captcha-container p {
  margin: 10px 0 0 0;
  font-size: 15px;
}

.captcha-container .error {
  color: #c00;
  margin-top: 8px;
  font-size: 15px;
}

@media (max-width: 480px) {
  .captcha-container {
    padding: 18px;
    max-width: 70vw;
    font-size: 0.7em;
  }
}