.agreementModal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  max-width: 800px;
  height: 500px;
  z-index: 999999999999999999;
}

.agreementModal::before {
  content: '';
  display: block;
  position: absolute;
  top: -100vh;
  left: -100vw;
  width: 1000vw;
  height: 1000vh;
  background: black;
  opacity: 0.3;
  z-index: -1;
}

.agreementModalWrapper {
  background: white;
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  padding-bottom: 1.5rem;
  padding-top: 0;
}

.agreementModal__content {
  font-family: Roboto, sans-serif;
  font-size: 0.875rem;
  overflow-y: scroll;
  background: #ecf2ff55;
  padding: 2rem;
  border-radius: 5px;
}

.agreementModal__title {
  font-family: Heebo, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1.5rem;
  padding-bottom: 1.5rem;
  width: 100%;
  border-bottom: 1px solid #f7f7f7;
  text-align: center;
  background-color: #ecf2ff;
  color: #171c26;
}

.agreementModal__footer {
  padding-top: 1.5rem;
}

.agreementModal__footer__button {
  font-family: Poppins, sans-serif;
  padding: 8px 32px;
  font-size: 14px;
  border: 0;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase !important;
  transition: background-color 400ms ease-in-out;
  font-weight: 600;
  background: #7093e5;
  color: white;
}

.agreementModal__footer__button--false {
  background: #f68685;
}

.signatureContainer {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.75rem;
}