input[type=text], select, textarea {
  font-family: 'Montserrat', sans-serif; 
  width: 100%;
  padding: 12px;
  
    border-bottom: 1px solid #ccc;
    border-top: 0px solid #ccc;
    border-left: 0px solid #ccc;
    border-right: 0px solid #ccc;
  
  border-radius: 0px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  font-family: 'Montserrat', sans-serif; 
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
    width:300px;
    border: 1px solid none;
    
     -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    
}

input[type=submit]:hover {
  background-color: rgb(250,250,250);
  border:1px solid #ccc;
  border-radius: 30px;
  color: rgb(0,0,0);
    
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

input[type='checkbox'] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  outline: none;
  font-size: inherit;
  cursor: pointer;
  width: 1.0em;
  height: 1.0em;
  background: white;
  border-radius: 0.25em;
  border: 0.125em solid #555;
  position: relative;
}
input[type='checkbox']:checked {
  background: #FFF;
}
input[type='checkbox']:checked:after {
  content: "✔";
  position: absolute;
  font-size: 90%;
  left: 0.0625em;
  top: -0.25em;
}

label.nadruk.active{
  background-color: #FFF;
}

.formContainer {
    border-radius: 5px;
    background-color: #ffffff;
    padding: 20px;
    text-align:center;  
}

.formContainerZam {
    max-width: 600px;
    border-radius: 5px;
    background-color: #ffffff;
    padding: 20px;
    text-align:center;  
    margin:0 auto;
}