
/* form */

#kontakt {
  max-width: 48rem;
  margin: 0 auto;
}

input, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  color: #fff;
  box-shadow: none !important;
  font-family:"FoundersGrotesk";
  padding: 0.5rem 0;
  display: inline-block;
  font-size: 1rem;
  width: 100%;
  resize: none;
  background: none;
}

textarea {
  min-height: 7rem;
  resize: none;
  border: 2px solid #fff;
  padding: .5rem;
}

form .half{
  width: 49%;
  float: left;
  margin-right: 2%;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #fff;
}

form .full{
  width: 100%;
  float: left;
  margin-bottom: 1.5rem;
}

form label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .6px;
  margin-bottom: 1rem;
}

form .half:nth-child(even) {
  margin-right: 0;
}

::-webkit-input-placeholder {
  color: #00634b;
}

:-ms-input-placeholder {
  color: #00634b;
}

::placeholder {
  color: #00634b;
}


form button, .btn {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background: #000;
  font-size: 1rem;
  font-family:"FoundersGrotesk";
  padding: 1rem 1.5rem;
  line-height: .9;
  display: inline-block;
  color: #fff;
  transition: all .3s ease-in-out;
}



form button:hover {
  background: #FFF;
  color: #000;
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 2.1rem;
    font-size: .8rem;
    font-family:"FoundersGrotesk";
    cursor: pointer;
}

.checkbox label::before {
    position: absolute;
    content: "";
    display: inline-block;
    height: 1.5rem;
    width: 1.5rem;
    background: #fff;
    left: 0;
    top: 0;
    border: 2px solid #fff;
}

.checkbox label::after {
    position: absolute;
    content: "";
    height: 8px;
    width: 14px;
    border-left: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(-45deg);
    left: 5px;
    top: 6px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.checkbox input[type="checkbox"]:checked + label::after {
    opacity: 1;
}


@media screen and (max-width: 560px) {
  form .half{
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}
