#page-create-point {
  width: 90%;
  max-width: 1100px;

  /* auto = alinha caixas (pelo lado de fora) */
  margin: 0 auto;
}

#page-create-point header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 48px;
}

#page-create-point header a {
  color: var(--title-color);
  font-weight: 700;

  display: flex;
  align-items: center;
}

#page-create-point header a span {
  background-image: url('https://i.imgur.com/rnajZCw.png');

  display: flex;

  width: 20px;
  height: 22px;

  margin-right: 16px;
}

form {
  background-color: white;

  /* auto = alinha caixas (pelo lado de fora) */
  margin: 80px auto;
  padding: 64px;

  border-radius: 8px;

  max-width: 730px;
}

form h1 {
  font-size: 36px;
}

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

form legend {
  margin: 0 0 40px;
}

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

form .field {
  display: flex;
  flex-direction: column;
  flex: 1;

  margin: 0 0 24px;
}

form .field-group {
  display: flex;
}

form input,
form select {
  background-color: #F0F0F5;

  padding: 16px 24px;

  border: 0;
  border-radius: 8px;

  font-size: 16px;

  /*outline:none;*/
}

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

form label {
  font-size: 14px;

  margin: 0 0 8px;
}

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

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

  background-color: var(--primary-color);

  border: 0;
  border-radius: 8px;

  color: white;
  font-weight: bold;
  font-size: 16px;

  margin: 40px 0 0;

  transition: background-color 400ms;
}

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

.items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

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

  list-style: none;

  border: 2px solid #f5f5f5;
  border-radius: 8px;

  height: 180px;
  padding: 32px 24px 16px;

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

  text-align: center;

  cursor: pointer;
}

.items-grid li span {
  display: flex;
  align-items: center;
  flex: 1;

  color: var(--title-color);

  margin-top: 12px;
}

.items-grid li.selected {
  background: #E1FAEC;
  border: 2px solid #34cb79;
}

.items-grid li img,
.items-grid li span {
  pointer-events: none;
}