html, body {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial;
    background: transparent;
    margin: 0 30px;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.err, .alert {
		max-width: 680px;
		margin: 15px auto 0;
}
fieldset {
     min-width: 100%;
     padding: 0;
     margin: auto;
     border: 0px;
}
	form {
		max-width: 680px;
		margin: 0 auto;
	}
label,a, body 
{
	font-size: 14px;
	line-height: 14px;
	color: #81bbd2;
	margin-bottom: 4px;
}
.err
{
	font-size : 12px;
	color: red;
}
#contact_form_errorloc {

}
#contact_form_errorloc > ul {padding: 10px;list-style: none;}
#contact_form_errorloc > ul > li {
	background: pink;
	padding: 5px 8px;
	margin-bottom: 3px;
	border-radius: 3px;
	border: 1px solid #ff0000a6;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.form-group {
    display: block;
    width: 100%;
    padding: 5px 10px;
    position: relative;
    margin-bottom: 10px;
}
.control-label {display: block;color: #E6EDF7;margin-left: 15px;margin-bottom: 10px;}
.form-control {
    width: 100%;
}
textarea#message {
    height: 140px;
}
input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="date"], select, textarea {
    padding: 5px 12px;
    font-weight: bold;
    background: #1F232D;
    border: 0px;
    height: 50px;
    border-radius: 10px;
    font-size: 16px;
    color: #E6EDF7;
}
button, input[type="submit"] {
	position: absolute;
    background-color: #116e8d;
    border-color: transparent;
    color: white;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .35s linear;
    -moz-transition: all .35s linear;
    -o-transition: all .35s linear;
    transition: all .35s linear;
    margin: 15px auto 60px;
    width: 100%;
    max-width: 400px;
    padding: 12px;
    border-radius: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); 
}
input[type="submit"]:disabled {
	cursor: not-allowed;
}
input[type="submit"] {
    background-color: #0077ff;
    color: #e6edf7;
    font-size: 16px;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 119 255);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 119, 255, 1);
    box-shadow: 0px 0px 10px 0px rgb(0 119 255);
    border: 0px transparent;
}