.kontaktform {
background-color: var(--lightgrey);
padding: 50px;
box-sizing: border-box;
}

.formrow {
width: calc(50% - 35px);
margin-bottom: 30px;
float: left;
margin-right: 35px;
}

.full {
margin-right: 35px;
width: calc(100% - 35px);
}

label {
display: block;
font-weight: bold;
font-size: 1rem;
}

.radiolabel { color: #333;}

.radiolabel p { line-height: 25px;}

.formrow textarea, .formrow select, input[type=text] {
box-sizing: border-box;
border: none;
font-size: 1rem;
font-family: 'poppinsregular';
height: 42px;
width: 100%;
padding-left: 15px;
margin-top: 3px;
-webkit-border-radius:0;
border-radius:0;
background-color: #E6E6E6;
}

.formrow select:focus {  outline: 2px solid var(--red);}

.formrow ::placeholder {
color: grey;
font-family: 'poppinsregular';
}

input[type=text]:focus, textarea:focus {
outline: 2px solid var(--red);
border: none;
}

input[type="checkbox"], input[type="radio"] {
width: 20px;
height: 20px;
float: left;
margin-top: 4px;
}

.formrow textarea {
height: 150px;
padding-top: 10px;
}

button {
cursor: pointer;
background-color: var(--red);
font-size: 1rem;
color: #fff;
font-family: 'poppinsregular';
border-radius: 15px;
padding: 10px 80px;
border: none;
box-sizing: border-box;
margin: 0 auto;
display: block;
}

button:hover {
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
background-color: var(--darkred);
}

.g-recaptcha { margin-top: 20px;  margin-bottom: 10px; }

/* custom check box */
/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.container .radiolabel { margin-left: 0px; }

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  border: 2px solid #ccc;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: var(--red);
    border: 2px solid var(--red);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .full { width: 100%; margin-right: 0px;}
  .formrow { margin-right: 0px; width: 100%; }
}


@media screen and (max-width: 768px) {
  .formrow {width: 100%; }
}

.error {color: var(--red); font-style: italic;  }