

.login-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;
}

.login-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;
}

.login-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;
}

.login-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;
}

.login-form input,
.login-form button {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
}

.login-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;
}

.login-form input::placeholder {
  color: #ABABAB;
  opacity: 1;
}

.login-form input:focus {
  background: #505050;
  box-shadow: 0 0 0 0.14rem #06C6A4;
}

.login-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;
}

.login-form button:hover {
  background: #06b292;
  box-shadow: 0 0.25rem 1.2rem rgba(255,255,255,0.28);
  color: #000000;
}
.login-popup { display: none; }
.login-popup.open { display: flex; }

.login-links {
    width: 100%;
    text-align: center;
    margin-top: 1.2em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
.login-links a {
    color: #06c6a4;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.2s;
}
.login-links a:hover {
    color: #fff;
    text-decoration: underline;
}
