:root {
  --bg-inner: #323841;
  --bg-dark: #20252d;
  --bg-card: #ffffffe0;
  --bg-dark-grey: #373842;
  --primary: #892449;
  --secondary: #2b1929;
  --danger: #d42626;
  --extra-color: #35c12c;
  --text: #282828;
  --white-color: #f7f7f7;
  --text-muted: #777d8b;
  --radius: 1.2rem;
  --transition: 0.45s ease-in-out;
  --hellgrau: #efeff1;
}

::-webkit-scrollbar { width: 0; height: 0;} 

*,
*::before,
*::after {
  font-family: "Public Sans", Roboto, Verdana, Sans;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  font-size: 1rem;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
  background: var(--bg-dark);
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  align-items: center;
  min-height: 100%;
  height: 100vh;
}

/* Hintergrundbild als Vollcover */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/system/system-background1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
  filter: hue-rotate(79deg);
}
.logo img {
	height: 9rem;
	width: auto;
	display: block;
}
.login-wrapper {
	width: 50%;
	background: var(--bg-dark);
	background: rgba(255, 255, 255, 0.12);
	  backdrop-filter: blur(100px) saturate(120%) brightness(0.9);
	  -webkit-backdrop-filter: blur(100px) saturate(120%) brightness(0.9);
	  border: 1px solid rgb(213 226 254 / 25%);
	  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	border-radius: var(--radius);
}
.login-right {
	padding: 4rem 2.2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	gap: 5rem;
}
.login-right h1 {
	font-size: 2.5rem;
	margin: 0;
	color: var(--white-color);
	text-align: center;
	text-transform: uppercase;
}
.login-right h2 {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	font-weight: 500;
	color: var(--white-color);
}
form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
input {
	padding: 14px;
	border: 1px solid var(--hellgrau);
	border-radius: 8px;
	font-size: 1rem;
	text-align: center;
}
button {
	padding: 14px;
	border: none;
	border-radius: 8px;
	background: var(--primary);
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	transition: background .3s;
}
button:hover {
	background: var(--secondary);
}
.error {
	background: #e5f1ff;
	color: var(--danger);
	padding: 10px;
	border-radius: 6px;
	margin-bottom: 10px;
	font-size: 0.9rem;
}
.signup-link {
	font-size: 0.9rem;
	text-align: center;
	color: var(--white-color);
}
.signup-link a {
	color: var(--primary);
	text-decoration: none;
}