@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playwrite+AU+SA:wght@100..400&display=swap");

* {
	margin: 0;
	padding: 0;
}
body {
	font-family: "Roboto", serif;
	font-style: normal;
	min-height: 100vh;
	width: 100%;
	overflow-x: hidden;
}
.content {
	width: calc(100% - 250px);
	min-height: 100vh;
	overflow-x: hidden;
	box-sizing: border-box;
	margin-left: 250px;
	position: relative;
	background-color: #3f434c;
}
.content-background {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	z-index: -3;
	background-color: #3f434c;
}
.content-wrapper {
	width: calc(100%);
	min-height: calc(100vh - 150px);
	overflow-x: hidden;
	box-sizing: border-box;
	position: relative;
	padding: 25px;
	display: flex;
	flex-direction: column;
}

.content-wrapper-headline {
	width: 100%;
	box-sizing: border-box;
	padding: 25px 0px 0px 0px;
	font-size: 28px;
	font-weight: 600;
	color: #e4e4e4;
	text-decoration: underline;
	text-decoration-color: #dd9361;
	text-decoration-thickness: 3px;
	text-align: center;
}
.content-wrapper-kontakt {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.content-wrapper-kontakt-info {
	box-sizing: border-box;
	padding: 25px;
}
.content-wrapper-kontakt-info p {
	display: flex;
	align-items: center;
	font-size: 18px;
	line-height: 30px;
}
.content-wrapper-kontakt-info p a {
	color: #b3b2b2;
	text-decoration: none;
}
.content-wrapper-kontakt-info p a:hover {
	text-decoration: underline;
}
.content-wrapper-kontakt-info p img {
	width: 25px;
	margin-right: 5px;
}
.kontaktformular {
	width: 450px;
	height: 580px;
	border: 2px solid #dd9361;
	box-sizing: border-box;
	padding: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 25px;
	background-color: #35383f;
}
.kontaktformular-headline p {
	font-size: 20px;
	font-weight: 500;
	color: #b3b2b2;
}
.kontaktformular-headline div {
	width: 100%;
	height: 1px;
	background-color: #dd9361;
	margin-top: 2px;
}
.kontaktformular-datenschutz {
	display: flex;
	width: 100%;
	align-items: center;
	box-sizing: border-box;
	padding: 10px 0px;
	position: relative;
}
.kontaktformular-datenschutz p {
	color: #b3b2b2;
	font-size: 16px;
}
.kontaktformular-datenschutz p a {
	color: #b3b2b2;
}
.kontaktformular-datenschutz input {
	height: 18px;
	width: 18px;
	margin-left: 10px;
}
.kontaktformular-input-line {
	display: flex;
	flex-direction: column;
	width: 80%;
	box-sizing: border-box;
	padding: 10px 0px;
	position: relative;
}
.kontaktformular-input-line span {
	color: #dd9361;
	font-size: 14px;
	margin-top: 5px;
}
.kontaktformular-input-line p {
	font-size: 16px;
	color: #706f6f;
	box-sizing: border-box;
	padding: 4px 0px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 10px;
	background-color: #35383f;
}
.kontaktformular-input-line-text.active {
	position: absolute;
	top: 10px;
	font-size: 14px;
	padding: 0px 4px;
	transition: 500ms;
}
.kontaktformular-input-line input {
	padding: 8px;
	font-size: 16px;
	outline: none;
	border: 1px solid #dd9361;
	border-radius: 8px;
	background: none;
	color: #b3b2b2;
}
.kontaktformular-input-line input:focus {
	border-color: #d37c42;
}
.kontaktformular-input-line textarea {
	resize: none;
	overflow-y: scroll;
	width: 100%;
	height: 150px;
	outline: none;
	border: 1px solid #dd9361;
	font-size: 16px;
	box-sizing: border-box;
	padding: 10px;
	border-radius: 8px;
	background: none;
	color: #b3b2b2;
}

.kontaktformular-input-line textarea::-webkit-scrollbar {
	width: 5px;
}
.kontaktformular-input-line textarea::-webkit-scrollbar-track {
	background: #b85310;
}
.kontaktformular-input-line textarea::-webkit-scrollbar-thumb {
	background: #3f434c;
}
.kontaktformular-input-line textarea::-webkit-scrollbar-thumb:hover {
	background: #26282e;
}

input:focus + p,
input:valid + p {
	position: absolute;
	top: -50%;
	z-index: 1111;
}

.kontaktformular-footer {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 15px 0px;
}
.kontaktformular-footer button {
	width: 140px;
	height: 35px;
	font-size: 16px;
	font-weight: 600;
	background: none;
	color: #dd9361;
	border: 2px solid #dd9361;
	transition: 350ms;
	border-radius: 10px;
}
.kontaktformular-footer button:hover {
	cursor: pointer;
	background: #dd9361;
	color: #ffffff;
	transition: 350ms;
}
.contact-content .landing-content-eye:nth-child(1) {
	top: 15%;
	left: 100%;
}
.contact-content .landing-content-eye:nth-child(2) {
	top: 50%;
	left: 2%;
	transform: translateX(50%) scale(2);
}

.kontaktformular-ergebnis {
	position: absolute;
	z-index: 10;
	background-color: #000000a8;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}
.kontaktformular-ergebnis.active {
	display: flex;
	justify-content: center;
	align-items: center;
}
.kontaktformular-ergebnis-box {
	width: 320px;
	height: 250px;
	background-color: #ffffff;
	z-index: 11;
	box-sizing: border-box;
	padding: 12px;
	border-radius: 15px;
	color: #706f6f;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}
.kontaktformular-ergebnis-box-icon-success {
	width: 50px;
	background-color: #76b82ab2;
	border-radius: 100%;
	padding: 5px;
	display: none;
}
.kontaktformular-ergebnis-box-icon-success.active {
	display: block;
}
.kontaktformular-ergebnis-box-icon-error {
	width: 50px;
	background-color: #dd9361;
	border-radius: 100%;
	padding: 5px;
	display: none;
}
.kontaktformular-ergebnis-box-icon-error.active {
	display: block;
}
.kontaktformular-ergebnis-box button {
	width: 140px;
	height: 35px;
	font-size: 16px;
	font-weight: 600;
	background: none;
	color: #dd9361;
	border: 2px solid #dd9361;
	transition: 350ms;
	border-radius: 10px;
}
.kontaktformular-ergebnis-box button:hover {
	cursor: pointer;
	background: #dd9361;
	color: #ffffff;
	transition: 350ms;
}
@media (max-width: 1200px) {
	.content {
		width: calc(100%);
		margin-left: 0px;
	}
	.content-wrapper {
		margin-top: 100px;
	}
}
@media (max-width: 500px) {
	.kontaktformular {
		width: 350px;
	}
	.kontaktformular-input-line {
		width: 90%;
	}
	.content-wrapper-kontakt-info p {
		font-size: 16px;
		line-height: 25px;
	}
	.content-wrapper-kontakt-info p img {
		width: 20px;
	}
	.kontaktformular-datenschutz {
		align-items: center;
		justify-content: center;
	}
	.kontaktformular-datenschutz p {
		width: 60%;
	}
}
@media (max-width: 400px) {
	.kontaktformular {
		width: 300px;
	}
	.kontaktformular-ergebnis-box {
		width: 280px;
	}
}
