body {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

#app {
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
}
#app .reminder-form {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
#app .reminder-form .form {
  border-top: 1px solid #707070;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#app .reminder-form .form .input-field {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
#app .reminder-form .form p {
  font-size: 0.8rem;
}
#app .modal .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}
#app .modal .content-wrapper img {
  width: 3rem;
}
#app .modal .content-wrapper .title {
  font-size: 1.5rem;
  color: var(--color-neutral-9);
  margin-top: 1rem;
  text-align: center;
}
#app .modal .content-wrapper .message1 {
  color: var(--color-neutral-9);
  margin-top: 2rem;
  text-align: center;
}
#app .modal .content-wrapper button {
  margin-top: 1rem;
}
#app .modal .content-wrapper .message2 {
  color: var(--color-neutral-9);
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 767px) {
  .reminder-form {
    padding: 1rem;
  }
  .reminder-form .form {
    padding: 1rem;
  }
  .reminder-form .form .input-field {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .reminder-form {
    padding: 1rem 2rem;
  }
  .reminder-form .breadcrumbs {
    position: absolute;
    top: 1rem;
  }
  .reminder-form .form {
    padding: 1rem 4rem;
  }
  .reminder-form .form .input-field {
    width: 25rem;
  }
}
