
.modal-dialog {
  max-width: 500px;
  margin: 2rem auto;
}

.modal-content {
  position: relative !important;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  z-index: 1;
  border: none;
}
.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    border-radius: 0.5rem;
    pointer-events: none;
}

.modal-content h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #333;
}

.modal-content form {
  display: flex;
  flex-direction: column;
}

.modal-content input {
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.modal-content input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.modal-content button[type="submit"] {
  margin-top: 1rem;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  background-color: #007bff;
  border: none;
  color: #fff;
  transition: background-color 0.2s ease;
}

.modal-content button[type="submit"]:hover {
  background-color: #0056b3;
}
