form {
	padding: 30px 38px 50px 38px;
	border: 1px rgba(190,190,190, 0.6) solid;
    box-shadow: 1px 1px 7px rgba(0,0,0,0.15);
    border-radius: 3px;
    font-family: 'Montserrat',sans-serif;
}

form h3 {
    text-align: center;
}

form p {
	color: #5e5e5e;
    font-weight: 400;
}

form span {
   font-size: 12px;
   line-height: 18px;
}


form input {
	background: #fff;
    padding: 10px;
    font-size: 15px;
    color: #19232c;
    width: 100%;
    border: 1px #bebebe solid !important;
    border-radius: 3px;
    margin-top: 5px;
    box-sizing: border-box;
}

form select {
	margin-top: 6px;
	margin-bottom: 20px;
	border: 1px #bebebe solid !important;
	display: block;
	width: 100%;
}


form.form .pd-checkbox .value span label.inline {
	display: flex;
    flex: 1 0 90%;
    align-self: center;
    margin-top: 15px;
    color: #243240;
    font-weight: 500;
}

form textarea {
    background: #fff;
    padding: 10px;
    height: 70px;
    border: 0px;
    color: #19232c;
    width: 100%;
    border: 1px #bebebe solid !important;
    border-radius: 3px;
    margin-top: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
  display: block;
  width: 100%;
  border: none !important;
  margin-top: 50px;
  background-color: #3daa2d;
  border-radius: 3px;
  color: white;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}

input[type="submit"]:hover {
    box-shadow: 0px 0px 6px rgba(0,0,0,0.2);
    transition: all 0.1s linear 0s;
}

label {
    font-size: 14px;
    font-weight: 500;
    color: #243240;
}


form p {
    margin-bottom: 0;
    margin-top: 18px;
    color: #5e5e5e;
}


.error, .errors {
    color: #af0124;
    font-size: 12px;
}

form.form .pd-radio .value span {
    display: flex;
}

form.form .pd-radio span.value span,
form.form .pd-checkbox .value span {
    display: flex !important;
}

form.form .pd-radio .value span input[type="radio"],
form.form .pd-checkbox .value span input[type="checkbox"] {
    display: flex;
    flex: 1 0 5%;
}