:root {
  /* line-height */
  --global-line-height: 1.4;

  /* top */
  --text-top: 3rem;
  --title-top: 2.4rem;

  /* bottom */
  --main-title-bottom: 4rem;
  --title-text-bottom: 1.2rem;

  /* li */
  --list-text: 0.8rem;
}

* {
  line-height: var(--global-line-height);
}

.form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10% 5%;
  /* width: 100%; */
  /* height: 100vh; */
}

.form_main_title {
  width: 100%;
  text-align: center;
}

.form_text {
  align-items: flex-start;
  margin-top: var(--text-top);
  /* line-height: var(--global-line-height); */
}

.form_title {
  margin-top: var(--title-top);
}

.form_title_text {
  align-items: flex-start;
  margin-bottom: var(--title-text-bottom);
}

.form_list_text {
  margin-left: var(--list-text);
  margin-bottom: var(--title-text-bottom);
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}

table {
  /* margin-top: var(--list-text); */
  margin-bottom: var(--title-text-bottom);
}

th {
  height: 50px;
  background: #cccccc;
}

td {
  height: 100px;
}
