/**************/
/* LOGIN PAGE */
/**************/

.neurologin .lqd-page-content-container .hidden.flex-col.justify-center img {
  border: 20px solid black;
  z-index: 3;
}

.neurologin header {
    z-index: 5;
}

.lqd-page-content-container .hidden.flex-col.justify-center {
    background-image: none !important;
}

.neurologin .lqd-page-content-container .decker {
    background: linear-gradient(120deg, #70acd4, #ca71ff 20%, #8469cc 30%, #4882e6, #8469cc 70%, #70acd4) !important;
    background-size: 200% 200% !important;
    animation: gradient-animation 20s ease-in-out alternate infinite !important;
    width: 50vw;
    height: 100%;
    position: absolute;
    right: 0;
    z-index: 2;
    opacity: 0.8; 
}

.neurologin video {
  position: absolute;
  z-index: 1;
  width: 50vw !important;
  right: 0; 
  opacity: 1; 
}

@media (max-width: 767px) {
  .neurologin video, .neurologin .lqd-page-content-container .decker {
    display: none !important;
  }
}


/* ********** */
/* NOTE BOX ON REGISTER PAGE */
.neuro-login-notebox {
  position: relative;
  background: #ffffff;
  border: 1px solid #d1d5db;
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-top: -8px;
  font-family: sans-serif;
  color: #374151;
  margin-bottom: -10px;
}

/* Pfeil oben (zentriert) */
.neuro-login-notebox::before, 
.neuro-login-notebox::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  pointer-events: none;
}

.neuro-login-notebox::before {
  top: -11px;
  border-bottom: 11px solid #d1d5db;
}

.neuro-login-notebox::after {
  top: -10px;
  border-bottom: 11px solid #ffffff;
}

/* Text oberhalb des Buttons */
.notebox-text {
  margin: 0 0 12px 0;
  font-size: 15px; /* Wie gewünscht auf 15px */
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
}
.notebox-text a {
  text-decoration: underline;
}
.notebox-text strong {
  font-weight: 900;
}

/* Telefon Button */
.neuro-call-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.neuro-call-button:hover {
  background-color: #1d4ed8;
}

/* Fix für die optische Zentrierung des Textes */
.button-text {
  position: relative;
  top: 2px; /* Schiebt den Text 2px nach unten */
}

.neuro-call-button svg {
  flex-shrink: 0;
  /* Icon bleibt technisch zentriert durch Flexbox alignment */
}




