


.registrieren-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 26, 32, 0.75);
  backdrop-filter: blur(1.2rem);
  z-index: 25;
}

.registrieren-form {
  background: #272727;
  border-radius: 1.125rem;
  box-shadow: 0 0.5rem 2rem 0 rgba(0,0,0,0.37);
  padding: 2.5rem 2vw 2rem 2vw;
  width: 90vw;
  max-width: 24rem;
  min-width: 16rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125rem;
}

.registrieren-logo {
  width: 7rem;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.625rem;
  display: block;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  object-fit: contain;
}

.registrieren-form h2 {
  color: #fff;
  margin: 0 0 0.625rem 0;
  font-weight: 700; /* Jetzt fett/bold */
  letter-spacing: 0.0625rem;
  font-size: 1.6rem;
  font-family: 'Roboto', Arial, sans-serif;
}

.registrieren-form input,
.registrieren-form button {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
}

.registrieren-form input {
  padding: 0.75rem 0.875rem;
  border-radius: 0.5rem;
  border: none;
  background: #494949;
  color: #FFFFFF;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 0.08rem 0.35rem rgba(0,0,0,0.35);
  transition: background 0.2s, box-shadow 0.2s;
  font-family: 'Roboto', Arial, sans-serif;
}

.registrieren-form input::placeholder {
  color: #ABABAB;
  opacity: 1;
}

.registrieren-form input:focus {
  background: #505050;
  box-shadow: 0 0 0 0.14rem #06C6A4;
}

.registrieren-form button {
  padding: 0.75rem 0;
  border-radius: 0.5rem;
  border: none;
  background: #06C6A4;
  color: #000000;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  cursor: pointer;
  box-shadow: 0 0.15rem 0.6rem rgba(255,255,255,0.21);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-family: 'Roboto', Arial, sans-serif;
}

.registrieren-form button:hover {
  background: #06b292;
  box-shadow: 0 0.25rem 1.2rem rgba(255,255,255,0.28);
  color: #000000;
}
.registrieren-popup { display: none; }
.registrieren-popup.open { display: flex; }

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}
.checkbox-container label {
    margin: 0;
    font-size: 15px;
    cursor: pointer;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 10px;
}

.checkbox-row input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.form-link {
  color: #00e6c3;
  text-decoration: underline;
  transition: color 0.2s;
}

.form-link:hover,
.form-link:focus {
  color: #fff; /* Deine grüne Hauptfarbe */
  text-decoration: underline;
}
