/* Vollbild-Layout */
.pps-wrap {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 2rem;
	box-sizing: border-box;
	position: relative;
}

/* Logo oben mittig */
.pps-logo {
	position: fixed;
	top: 2rem;
	left: 50%;
	transform: translateX(-50%);
}
.pps-logo-img {
	height: 48px;
	width: auto;
	display: block;
}

/* Karte */
.pps-card {
	width: 100%;
	max-width: 420px;
	padding: 2rem;
	border-radius: 16px;
	background: rgba(255,255,255,.92);
	box-shadow: 0 10px 30px rgba(0,0,0,.25);
	backdrop-filter: saturate(140%) blur(4px);
}
.pps-card h1 { margin: 0 0 .5rem; font-size: 1.25rem; }
.pps-card p  { margin: 0 0 1rem; }

.pps-error { color: #b00020; margin-bottom: .75rem; }

.pps-card label { display: block; margin-bottom: .25rem; font-weight: 600; }
.pps-card form{
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: nowrap;
	align-content: center;
	align-items: flex-start;
	gap: 10px;
}
.pps-card input {
	border-radius: 50px;
	border: none;
	width: calc(100% - 30px);
	max-width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: start;
	justify-content: flex-start;
	font-weight: 300;
	border: solid 1px #000;
	min-height: 43px;
	padding: 0 15px;
}
.pps-card button {
	text-decoration: none;
	font-weight: 400;
	border-radius: 50px;
	border: 1px solid #000;
	display: inline-block;
	padding-left: 27px;
	padding-right: 27px;
	padding-top: 13px;
	padding-bottom: 10px;
	transition: all .3s;
	margin-top: 30px !important;

	display: -ms-inline-flexbox;
	display: inline-flex;
	position: relative;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: auto;
	line-height: 1;
}
.pps-card button:hover{
	background: #374447;
	color: #fff;
	border-radius: 35px 0;
}
