.wrap {
  max-width: 1122px;
  margin: 0 auto;
  padding: 32px;
  gap: 16px;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .wrap {
    flex-direction: column;
  }
}

.enter {
  width: 100%;
  gap: 24px;
  display: grid;
}

.enter h1 {
  border-left: solid 7.5px #f0f0f0;
  margin: 16px 0;
  padding-left: 16px;
}

.enter h1 span {
  font-size: 15px;
  font-weight: 600;
}

.enter p {
  color: #555555;
  font-size: 10px;
  font-weight: 400;
}

.enter a {
  background-color: #fafafa;
  border: solid 1.5px #f0f0f0;
  border-radius: 8px;
  padding: 16px;
}

.enter a span {
  font-size: 12px;
  font-weight: 400;
}

.enter hr {
  border: solid 0.75px #f0f0f0;
}

.enter section {
  gap: 16px;
  display: grid;
}

.enter label {
  background-color: #fafafa;
  border: solid 1.5px #f0f0f0;
  border-radius: 8px;
  padding: 16px;
}

.enter h2 {
  border-left: solid 7.5px #f0f0f0;
  padding-left: 16px;
}

.enter h2 span {
  font-size: 13px;
  font-weight: 600;
}

.enter fieldset {
  gap: 4px;
  display: grid;
}

.enter span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.enter button {
  background-color: #000000;
  border-radius: 100px;
  padding: 10px;
}

.enter button span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  margin: auto 10px;
}

.input h3 {
  color: #555555;
  font-size: 8px;
  font-weight: 400;
}

.input input {
  width: 100%;
  padding: 10px;
}

.input textarea {
  padding: 10px;
}

.radio {
  gap: 4px;
  display: flex;
  align-items: center;
}

.radio input {
  width: 16px;
  height: 16px;
}

.radio span {
  font-size: 12px;
  font-weight: 400;
}

.select {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select select {
  width: 100%;
}

.select img {
  width: 16px;
  height: 16px;
}

.enter ol {
  gap: 4px;
  display: grid;
}