/*.indent{
  text-indent: 5px;
  padding: 5px 5px 5px 5px;
}*/
fieldset {
  margin: 10px 10px 10px 10px;
  padding: 5px 5px 5px 5px;
  border-radius: 5px;
}

input {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-indent: 5px;
  font-size: 18px;
  border-radius: 3px;
  border-color: lightgrey;
  cursor: pointer;
}

label {
  padding-top: 2%;
  font-size: 17px;
  padding-bottom: 5px;
}

input:focus,
textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

textarea {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  text-indent: 5px;
  border: 2px solid lightgrey;
  border-radius: 3px;
  cursor: pointer;
}

button {
  padding: 3px 3px 3px 3px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

button:hover {
  background-color: #e7e7e7;
}

@media (max-width: 600px) {

  input,
  textarea {
    font-size: 14px;
    padding: 6px 10px;
    width: 90%;
    max-width: 100%;
  }

  .radio-group {
    gap: 15px;
    /* Slightly smaller gap on mobile */
  }

  .radio-group label {
    font-size: 13px;
  }

  button {
    padding: 6px 12px;
    font-size: 14px;
  }
}