*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Quicksand', sans-serif;
}

body{
	height: 100vh;
	width: 100%;
}

.container{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 100px;
}

.container:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url("img/IMG_2785.jpg") no-repeat center;
	background-size: cover;
	filter: blur(50px);
	z-index: -1;
}
.contact-box{
	max-width: 850px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #fff;
	box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
}

.left{
	background: url("img/IMG_2786.JPG") no-repeat center;
	background-size: cover;
	height: 100%;
}

.right{
	padding: 25px 40px;
}

h2{
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

h2:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #2ecc71;
}

/* hier werden die Eingabefelder designet*/

.field{
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 5px;
	transition: .3s;
}

.half-field{
	width: 49%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 5px;
	transition: .3s;
}

.genderButtons {
	display: flex;
	align-items: center;
	flex-direction: row;
	margin-bottom: 5px;
	justify-content: space-between;
}

.genderButtons input {
	margin-right: 10px;
}

.radioInputs {
	display: flex;
	flex-direction: row;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 5px 10px;
	align-items: center;
}

.anrede {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.email {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: -10px;
}

.telefonnummer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: -10px;
}

#emailArt {
	width: 19%;
	height: 42px;
	background-color: rgba(230, 230, 230, 0.6);
	border: 2px solid rgba(0, 0, 0, 0);
}

.question {
	margin-left: 2%;
}

.checkboxSection {
	background-color: rgba(230, 230, 230, 0.6);
	margin-bottom: 22px;
	text-align: left;
}

.wochentage{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.checkbox {
	width: 29%;
	display: flex;
	align-items: center;
	margin: 5px 5px;
}

.checkbox input {
	float: left;
	margin-right: 5px;
	background-color: transparent;
}

#telefonummerArt {
	width: 19%;
	height: 42px;
	background-color: rgba(230, 230, 230, 0.6);
	border: 2px solid rgba(0, 0, 0, 0);
}

.achtzig-field{
	width: 80%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
}

/* Hier werden die Fehlermeldungen designet*/

.fehlermeldung {
	height: 22px;
	margin-bottom: 10px;
}

#errGender {
	font-size: small;
	color: red;
}

#errName {
	font-size: small;
	color: red;
}

#errEmail {
	font-size: small;
	color: red;
}

#errTelefon {
	font-size: small;
	color: red;
}

.buttonSection {
	display: flex;
	align-items: center;
}


.field:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

textarea{
	min-height: 150px;
}

.btn{
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #2ecc71;
	color: #fff;
	font-size: 1.1rem;
	border: none;
	outline: none;
	cursor: pointer;
	transition: .3s;
	float: left;
}

.btn:hover{
    background-color: #27ae60;
}

.field:focus{
    border: 2px solid rgba(30,85,250,0.47);
    background-color: #fff;
}

@media screen and (max-width: 880px){
	.contact-box{
		grid-template-columns: 1fr;
	}
	.left{
		height: 200px;
	}
}