
:root {
  --darkblue: #011520;
  --copper: #c59d58;
  --copper-dark: #b77e48;
  --bg-gradient: linear-gradient(135deg, #010e17, #012a3a);
}

#hollermeier-form-overlay {
  display: none !important;
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
}

#hollermeier-form-popup {
  background: var(--bg-gradient);
  color: white;
  width: 90%;
  max-width: 520px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 45px 35px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.7);
  font-family: 'Montserrat', sans-serif;
  z-index: 100000;
}

#hollermeier-form-popup h2,
#hollermeier-form-popup p {
  color: white;
  text-align: center;
}

#hollermeier-form-popup p {
  margin-bottom: 30px;
}

#hollermeier-form-popup img {
  max-width: 180px;
  margin: 0 auto 20px;
  display: block;
}

.hollermeier-form-field {
  margin-bottom: 20px;
}

.hollermeier-form-field input,
.hollermeier-form-field textarea {
  background: #ffffff10;
  border: 1px solid var(--copper-dark);
  border-radius: 12px;
  padding: 14px 25px; /* vorher 20px → jetzt +5px mehr nach rechts */
  color: white;
  font-size: 17px;
  width: 100%;
  height: 52px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.hollermeier-form-field input:focus,
.hollermeier-form-field textarea:focus {
  border-color: var(--copper);
  outline: none;
  box-shadow: 0 0 0 2px #c59d5820;
}

.hollermeier-button,
#hollermeier-submit {
  background: var(--copper);
  color: white;
  padding: 18px 26px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: inline-block;
  max-width: 100%;
  transition: none;
}

.hollermeier-button:hover,
#hollermeier-submit:hover {
  background: var(--copper);
  color: white;
  transform: none;
}
