body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

body {
  background-size: cover;
  background-position: center;
}

.modal-header {
    padding-top: 1.5rem !important;
}

.modal-content {
    position: relative;
    overflow: hidden;
    border-radius: 16px !important;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.28);
}

.modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        #008BD2,
        #52AE32,
        #E84910,
        #6CC2BA
    );
    z-index: 3;
}

.modal-body {
    padding-top: 1rem !important;
    padding-bottom: 1.5rem !important;
}

.form-control,
.form-select {
    border-radius: 10px !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #1f86d4 !important;
    box-shadow: 0 0 0 2px rgba(31, 134, 212, 0.12) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #1f86d4, #0f5fa8);
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  filter: brightness(1.05);
}


