/* General Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f3f4f6;
  color: #333;
}

/* Container Styles */
.container {
  background-color: #ffffff;
  width: 100%;
  max-width: 500px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Heading Styles */
h2 {
  color: #333333;
  font-size: 24px;
  margin-bottom: 10px;
}

/* Paragraph Styles */
p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Button Styles */
button {
  padding: 10px 20px;
  font-size: 16px;
  color: #ffffff;
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #45a049;
}

button:active {
  background-color: #3e8e41;
}

/* Hidden Sections */
#verify, #download {
  display: none;
}

/* Show Elements */
#verify.active, #download.active {
  display: block;
}

/* Custom Styles for hCaptcha */
.h-captcha {
  margin: 10px auto;
}
