.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

* {
  top: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  background-color: hsl(186, 15%, 59%);
  max-width: 800px;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

main {
  background-color: whitesmoke;
  border-radius: 5px;

  width: 75%;
  height: auto;
}

form {
  padding: 10px;
}

.info {
  display: flex;
  gap: 10px;
  padding-bottom: 35px;
}
.info label {
  font-size: 1rem;
}

.info input {
  border: 1px solid silver;
  border-radius: 5px;
  width: 100%;
  height: 35px;
}
.email {
  display: flex;
  flex-direction: column;
  padding-bottom: 35px;
}

.email input {
  border: 1px solid silver;
  border-radius: 5px;
  width: 100%;
  height: 35px;
}

.radio-group {
  display: flex;
  gap: 10px;
  padding-bottom: 5px;
}

/* Style the containers */
.radio-group .general,
.radio-group .support {
  border: 1px solid silver;
  border-radius: 5px;
  width: 100%;
  height: 35px;
  padding: 4px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* When selected, change color */
.radio-group .general:has(input:checked),
.radio-group .support:has(input:checked) {
  background-color: hsl(169, 82%, 27%);
  color: white;
  border-color: hsl(169, 82%, 27%);
}

.message label {
  margin-top: 15px;
  display: block;
}

.message textarea {
  width: 100%;
}
.message {
  margin-bottom: 35px;
}

.check span {
  display: block;
  margin-bottom: 25px;
}

button {
  width: 100%;
  border-radius: 5px;
  background-color: hsl(169, 82%, 27%);
  height: 35px;
  color: white;
  border: none;
}

.error-message {
  color: red;
  font-size: 0.6rem;
}
