
#sollicitatieForm {
  max-width: 600px;
  margin: 40px auto;
  background: #1e1e1e;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

#sollicitatieForm input,
#sollicitatieForm select,
#sollicitatieForm textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background: #2c2c2c;
  color: #f0f0f0;
}

#sollicitatieForm input::placeholder,
#sollicitatieForm textarea::placeholder {
  color: #aaa;
}

#sollicitatieForm button {
  background-color: #00aaff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#sollicitatieForm button:hover {
  background-color: #008fcc;
}

.sf-loader {
  margin-top: 10px;
  font-weight: bold;
  color: #00aaff;
}

#sf-popup {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #333;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  z-index: 9999;
  text-align: center;
  max-width: 90%;
  width: 400px;
}

