/* Container für Registrierungs- und Formularinhalte */
.register-box {
	width: 720px;
	margin: 1px 0 60px;
	padding: 30px;
	background: #1e293b;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Überschrift */
.register-box h1 {
	text-align: center;
	margin-bottom: 10px;
	color: #ffffff;
}

/* Beschreibungstext */
.register-box p {
	text-align: center;
	margin-bottom: 25px;
	color: #cbd5e1;
	font-size: 14px;
	line-height: 1.5;
}

/* Formular-Labels */
.register-box label {
	display: block;
	margin-bottom: 4px;
	font-weight: bold;
	color: #e5e7eb;
}

/* Eingabefelder */
.register-box input[type="text"], .register-box input[type="password"] {
	width: 100%;
	padding: 10px;
	margin-bottom: 6px;
	background: #020617;
	border: 1px solid #334155;
	border-radius: 6px;
	color: #ffffff;
	box-sizing: border-box;
}

.register-box input:focus {
	outline: none;
	border-color: #2563eb;
}

.register-box input::placeholder {
	color: #94a3b8;
}

/* Passwortfeld mit Toggle-Button */
.password-row {
	position: relative;
}

.password-toggle {
	position: absolute;
	right: 10px;
	top: 34px;
	background: transparent;
	border: none;
	color: #93c5fd;
	cursor: pointer;
	font-size: 13px;
	padding: 0;
}

.password-toggle:hover {
	text-decoration: underline;
}

/* Links im Formular */
.register-box a {
	display: block;
	margin-top: 16px;
	text-align: center;
	color: #93c5fd;
	text-decoration: none;
	font-size: 14px;
}

.register-box a:hover {
	text-decoration: underline;
}

/* Responsive Anpassung */
@media ( max-width : 760px) {
	.register-box {
		width: 92%;
		margin-top: 40px;
	}
}