form {
    /* Center the form on the page */
    /* margin: 35px auto 0; */
    width: 100%;
}
form * {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


form .text-field {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,.075);
}


ul {
  list-style: none;
}

form li + li {
  margin-top: 1em;
}
  
input, 
textarea {
  font: 1em sans-serif;

  /* Uniform text field size */
  width: 100%;
  justify-self: center;
  box-sizing: border-box;
}

textarea {
  vertical-align: top;

  height: 5em;
}


.form-button {
  width: 100%;
  flex-direction: row;
  justify-content: center;
}

.form-button button {
  min-width: 100px;
  max-width: 200px;
  width: 30%;
}

form .text-field:focus {
  border-color: #66afe9;
  box-shadow:  0 0 8px rgba(102,175,233,.6);
  transition: 0.2s;
}

input:invalid:required {
  box-shadow: 0 0 8px rgba(255,0,0,.6);
}

.telecontener p {
  padding: 10px 0;
}

@media screen and (min-width: 768px) {
    #kontakt .container-80 {
      flex-direction: row;
    }
    .telecontener {
      /* display: flex;
      flex-direction: column;
      justify-content: left; */
      align-items: center;
      width: 30%;
    }
    form {
      width: 60%;
    }
    .telecontener, form {
      padding: 10px 40px;
    }
    textarea {
      vertical-align: top;
    
      height: 7em;
    }
}