h3, h4 {
  font-weight: 600;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: .5rem;
  color: #000;
}
p {
  font-size: 1rem;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
menu, ol, ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.agreementFormWrap {
  width: 100%;
}
.agreementForm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 1rem;
  background-color: #fff;
  overflow-y: auto;
}
.agreementFormContents {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.agreementFormHeader {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.agreementFormHeaderTitle {
  color: #111;
  text-align: center;
  font-size: 1.5rem;
  line-height: 100%;
  font-weight: 700;
}
.agreementFormViewerWrap {
  width: 100%;
  max-width: 540px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-radius: 16px;
  border: 1px solid #e9e9e9;
}
.agreementFormViewerLine {
  display: flex;
  padding: .75rem;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #e9e9e9;
  background-color: #fff;
}
.agreementFormEulaText {
  max-height: 180px;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  background-color: #fff;
  color: #000;
}
.agreementFormEulaText * {
  line-height: 1.25rem;
}

@media (max-width:530px) {
  .agreementFormContents {
    gap: 2rem;
  }
  .agreementFormHeaderTitle {
    font-size: 20px;
  }
}