/* ================= Modal ================= */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.modal .close {
  color: #333;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal .close:hover {
  color: #1f8883;
}

.join-form label {
  display: block;
  margin: 10px 0 5px;
}

.join-form input,
.join-form select,
.join-form textarea,
.join-form button {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.join-form button {
  background-color: #26a6a0;
  color: white;
  border: none;
  cursor: pointer;
}

.join-form button:hover {
  background-color: #1f8883;
}
