#page-create-point {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

#page-create-point header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
}

#page-create-point a {
  color: var(--title-color);
  font-weight: bold;
  display: flex;
  align-items: center;
}

#page-create-point a span {
  background-image: url("../assets/arrow-left.svg");
  width: 20px;
  height: 24px;
  display: flex;
  margin-right: 16px;
}

form {
  background: white;
  padding: 64px;
  max-width: 730px;
  border-radius: 8px;
  box-sizing: border-box;
  margin: 80px auto;
}

form h1 {
  font-size: 36px;
}

form fieldset {
  margin-top: 64px;
  border: 0;
}

form legend {
  margin-bottom: 40px;
}

form legend h2 {
  font-size: 24px;
}

form .field {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 24px;
}

form .field-group {
  display: flex;
}

form input,
form select {
  background-color: #f0f0f5;
  border: 0;
  padding: 16px 24px;
  font-size: 16px;
  border-radius: 8px;
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

form label {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
}

form .field-group .field + .field {
  margin-left: 24px;
}

form button {
  width: 260px;
  height: 56px;

  border-radius: 8px;
  background-color: var(--primary-color);
  font-weight: bold;
  font-size: 16px;
  border: 0;
  margin-top: 40px;
  color: white;
  transition: background-color 400ms;
}

form button:hover {
  background-color: #2fb86e;
}

/* ítens de Coleta */
/* Usando o GRID */
.items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.items-grid li {
  background-color: #f5f5f5;
  list-style: none;

  border-radius: 8px;
  height: 180px;
  padding: 32px 24px 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;
}

.items-grid li span {
  text-align: center;
  font-weight: bold;
  line-height: 25px;
}

.items-grid li.selected {
  background: #e1faec;
  border: 3px solid #2fb86e;
}
