main {
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20vh;
}

form {
  max-width: 320px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.required {
  color: red;
  margin-left: 4px;
}

.category-group {
  margin-bottom: 20px;
}

.category-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-options label {
  background: #eee;
  border-radius: 20px;
  padding: 8px 14px;
  cursor: pointer;
  transition: 0.2s;
}

.category-options input[type="radio"] {
  display: none;
}

.category-options input[type="radio"]:checked + label {
  background: #007bff;
  color: white;
  font-weight: bold;
}

form button {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

form button:hover {
  background: #0056c4;
}

.cta {
  margin-top: 30px;
  text-align: center;
}

.cta a > span {
  font-size: 1.5rem;
}

.cta a {
  background: #007bff;
  color: var(--text-main);
  padding: 15px 50px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
