.u-section-1 {
  background-image: none;
  background-color: #e30613; /* DLRG Rot als Fallback */
}

.u-section-1 .u-sheet-1 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.u-section-1 .u-image-1 {
  width: 497px;
  height: 497px;
  margin: 0 auto;
  animation: fadeIn 1s ease-in-out;
}

.u-section-1 .u-form-1 {
  height: 375px;
  background-image: none;
  width: 442px;
  margin: 40px auto 60px;
  animation: slideUp 0.8s ease-out;
}

.u-section-1 .u-input-1 {
  background-image: none;
  font-size: 14px;
  height: 50px;
  border: 1px solid #ccc;
}

.u-section-1 .u-input-2 {
  background-image: none;
  font-size: 14px;
  height: 50px;
  border: 1px solid #ccc;
}

.u-section-1 .u-btn-1 {
  background-image: none;
  border-style: none;
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.u-section-1 .u-btn-1:hover {
  background-color: #c00510;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.u-section-1 .u-form-group-4 {
  margin-bottom: 0;
}

/* Animationen */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 575px) {
  .u-section-1 .u-sheet-1 {
    min-height: auto;
    padding: 40px 0;
  }

  .u-section-1 .u-image-1 {
    width: 280px;
    height: 280px;
    margin-top: 20px;
  }

  .u-section-1 .u-form-1 {
    width: 90%;
    max-width: 340px;
    margin-top: 30px;
    padding: 20px !important;
  }
  
  .u-section-1 .u-form-1 .u-input-1,
  .u-section-1 .u-form-1 .u-input-2 {
    height: 45px;
    font-size: 13px;
  }
}

/* Zusätzliche Verbesserungen */
.u-section-1 .u-form-1 .u-form-group {
  margin-bottom: 25px;
}

.u-section-1 .u-form-1 .u-label {
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.u-section-1 .u-form-checkbox .u-field-label {
  color: #555;
  font-size: 14px;
}

/* Fehlermeldung Styling */
.error-message {
  background-color: #ffe6e6;
  border: 1px solid #ff9999;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 20px;
  text-align: center;
  color: #cc0000;
  font-weight: 500;
}