/* Lumaps Haupt-Website - Login (im Format der Info-Anzeige) */

.login-body {
  background: #FDFCF8;
  color: #0B0B0B;
  font-family: "Quicksand", sans-serif;
  min-height: 100%;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.login-zurueck {
  position: fixed;
  top: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FDFCF8;
  box-shadow: 0 1px 4px rgba(11, 11, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.login-zurueck:hover {
  background: #C8B6E2;
}

.login-zurueck svg {
  width: 20px;
  height: 20px;
  fill: #0B0B0B;
}

.login-wrap {
  width: 100%;
  max-width: 440px;
}

.login-card {
  background: #FDFCF8;
  border: 1px solid rgba(11, 11, 11, 0.1);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 6px 26px rgba(11, 11, 11, 0.1);
}

.login-kopf {
  text-align: center;
  margin-bottom: 26px;
}

.login-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(200, 182, 226, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-icon svg {
  width: 32px;
  height: 32px;
  fill: #0B0B0B;
}

.login-titel {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
}

.login-untertitel {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(11, 11, 11, 0.6);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-feld {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.login-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(11, 11, 11, 0.75);
}

.login-input {
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(11, 11, 11, 0.18);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: #0B0B0B;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.login-input:focus {
  border-color: #C8B6E2;
  box-shadow: 0 0 0 3px rgba(200, 182, 226, 0.4);
}

.login-button {
  margin-top: 6px;
  height: 48px;
  border: none;
  border-radius: 10px;
  background: #0B0B0B;
  color: #FDFCF8;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.login-button:hover {
  background: #C8B6E2;
  color: #0B0B0B;
}

.login-status {
  min-height: 18px;
  font-size: 13px;
  color: #0B0B0B;
  text-align: center;
}

.login-hinweis {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(11, 11, 11, 0.55);
  text-align: center;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
