@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

html {
  font-family: "Inter", sans-serif !important;
}
#content {
  height: calc(100vh - 64px) !important;
}

form p {
  display: flex;
  flex-direction: column;
}

form p label {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

form input {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
}

form input[type="submit"] {
  padding: 0;
}

.select2-results__options {
  max-height: 50vh !important;
}

.errorlist {
  color: rgb(255, 43, 43);
  list-style: none;
  font-weight: bold;
  margin-bottom: 10px;
}

.warning {
  color: rgb(255, 117, 43);
  list-style: none;
  font-weight: bold;
  margin-bottom: 10px;
}

.success {
  color: rgb(42, 170, 42);
  list-style: none;
  font-weight: bold;
  margin-bottom: 10px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  margin: 0 auto;
  width: 25%;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modal-content h4 {
  text-align: center;
  font-size: large;
  font-weight: bold;
  margin-bottom: 10px;
}

.modal-content .modal-footer {
  width: 90%;
  padding: 10px 20px;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.modal-content .modal-footer a {
  width: 50%;
  padding: 10px 20px;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}
