/* style.css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: url("https://cdn.suneater.cloud/Solo%20leveling%204k.jpg") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
}

.container {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
  font-size: 22px;
}

.captcha-form label {
  display: block;
  margin-bottom: 10px;
  color: #555;
  font-size: 16px;
}

.captcha-form input[type="number"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.2s;
}

.captcha-form input[type="number"]:focus {
  border-color: #3b82f6;
  outline: none;
}

.captcha-form button {
  background-color: #3b82f6;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s;
}

.captcha-form button:hover {
  background-color: #2563eb;
}

@media (max-width: 480px) {
  .container {
    padding: 25px 20px;
  }

  h2 {
    font-size: 20px;
  }

  .captcha-form input[type="number"],
  .captcha-form button {
    font-size: 15px;
    padding: 10px 14px;
  }
}