/* Anmeldung Workshop - komplett eigenständig */
.anmeldung-workshop {
  background-image: url('images/websiteforrest49.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workshop-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.workshop-form {
  background: rgba(255,255,255,0.95);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}

.workshop-title {
  font-size: 3em;
  text-align: center;
  color: var(--secondary-color, #2c3e50);
  margin-bottom: 50px;
  font-weight: 800;
  line-height: 1.1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px;
  margin-bottom: 25px;
  border: 2px solid #e1e8ed;
  border-radius: 15px;
  font-size: 16px;
  box-sizing: border-box;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color, #3498db);
  box-shadow: 0 0 0 4px rgba(52,152,219,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.workshop-form button {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-color, #3498db), #2980b9);
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(52,152,219,0.3);
}

.workshop-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(52,152,219,0.4);
}
