/* open-signup-modal.css */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

.signup-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.6); /* <- Abdunklung */
  z-index: 9998;
  display: none;
}

.dfform-container {
  background: #eeeeee;
  padding: 30px 20px;
  border-radius: 14px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  text-align: center;
}

.close-signup-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

.signup-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 15px;
  box-shadow: 0 0 0 3px #eeeeee;
}

.boxheadline {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.4;
  text-align: center;
}

.boxheadline span {
  color: #DE2A32;
}

.dfform-field {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.mySubmitButton {
  background-color: #DE2A32;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

.mySubmitButton:hover {
  background-color: #e28b10;
}

#tos {
  font-size: 0.9rem;
  text-align: left;
  margin-bottom: 15px;
}

#tos a {
  color: #0066cc;
  text-decoration: underline;
}

.regional-cta {
  background-color: #838383;
  color: #fff;
  font-size: 1.1rem;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin: 20px 0;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* Neuer Hover-Effekt */
.regional-cta:hover {
  background-color: #6e6e6e; /* etwas dunkleres Grau für mehr Tiefe */
  box-shadow: 0 0 10px rgba(222, 42, 50, 0.4); /* das stylische Rot aus dem Modal */
  transform: translateY(-2px); /* leichtes "Anheben" beim Hover */
}

@media (max-width: 480px) {
  .dfform-container {
    width: 95%;
    padding: 25px 15px;
  }

  .signup-avatar {
    width: 70px;
    height: 70px;
  }
}

.highlight {
  color: #F37262;
  font-weight: 600;
}