/* modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal.hidden {
  display: none;
}

.modal-box {
  background: white;
  width: 100%;
  max-width: 400px;
  padding: 1.5rem;
  border-radius: .75rem;
}

/* form */
.input {
  width: 100%;
  padding: .5rem .75rem;
  border: 1px solid #cbd5e1;
  border-radius: .375rem;
  margin-bottom: .75rem;
}

.btn-primary {
  width: 100%;
  background: #2563eb;
  color: white;
  padding: .5rem;
  border-radius: .375rem;
}

.btn-primary:hover {
  background: #1d4ed8;
}
