body {
  font-family: "Poppins", sans-serif;
  background: #ffffff
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjZmZmZmZmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiNlNWU1ZTUiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
  color: #1a2b5f;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.form-card {
  background: #ffffff;
  box-shadow: 0 12px 35px -10px rgba(0, 86, 179, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(0, 86, 179, 0.1);
  padding: 2rem;
  backdrop-filter: blur(4px);
  width: 100%;
  max-width: 32rem;
}

.input-field {
  background-color: #f5f5f7;
  border: 1px solid #e0e0e0;
  color: #1a2b5f;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  width: 100%;
}

.input-field:hover {
  border-color: #b3b3b3;
}

.input-field:focus {
  border-color: #0056b3;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, #0056b3 0%, #3b82f6 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 86, 179, 0.2);
}

.participant-chip {
  transition: all 0.2s ease;
  background-color: #0056b3;
  color: white;
}

.participant-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.logo-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.section-border {
  border: 1px solid rgba(0, 86, 179, 0.2);
  border-radius: 0.5rem;
  background: #f5f5f7;
}


.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}