.myForm {
    display:inline-block;
    margin: 0;
    text-align: left;
    /*padding: 30px;*/
    padding-bottom: 10px;
    width: 100%;
	font: inherit;
	font-size: inherit;
}

.myInputGroup {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
	font: inherit;
	font-size: inherit;
}

.myInput {
    display: block;
    width: 100%;
    /*height: 30px;*/
    /*color: #495057;*/
    background-color: none;
    transition: border-color 0.15s ease-in-out /*, box-shadow 0.15s ease-in-out*/;
	box-shadow: none;
	font: inherit;
	font-size: inherit;
	outline: none;
	padding: 10px;
    border-width:1px;
    border-style:solid;
    border-radius: 5px;
	border-color: #DDDDDD;
}

.myInput:focus {
	border-color: #2A7DFF;
}

select.myInput[size], select.myInput[multiple] {
    height: auto;
}

textarea.myInput {
    height: auto;
}

label.myLabel {
    display: inline-block;
    margin-top: 10px;
    /*margin-bottom: 5px;*/
	font: inherit;
	font-size: inherit;
}

.mailSuccess {
	text-align: center;
	color: #FFFFFF;
    background-color: green;
}

.mailFail {
	text-align: center;
	color: #FFFFFF;
    background-color: red;
}

/* honeypot spam fields */
input[type="text"]#organisation {
	display: none;
}

input[type="password"]#password {
	display: none;
}

input[type="checkbox"]#humanCheck {
	display: none;
} 

input[type="checkbox"]#botCheck {
	display: none;
}