@charset "utf-8";

h1, h2, h3, h4, h5, h6 {
    color: #2d6ca2; /* Main header text color */
}

a {
    color: #5173bd; /* Main link color */
}

a:hover,
a:focus {
    color: #5173bd;
    text-decoration: none; /* Main hover link color */
}

.btn-success {
    background-color: #2d6ca2; /* Submit button color */
    background-image: none;
    border: 0;
    line-height: 1.8;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: #428bca; /* Submit button hover color */
    color: #FFF; /* Submit button text color */
    border: 0;
}

.form-control::-moz-placeholder {
    color: #848E93; /* Color of placeholder text */
}

.form-control:-ms-input-placeholder {
    color: #848E93; /* Color of placeholder text */
}

.form-control::-webkit-input-placeholder {
    color: #848E93; /* Color of placeholder text */
}

.light .contact-form {
    background: #ff7f00; /* Background color of form */
    border: 3px solid #209ab8; /* Border color around form */
}

/* Custom */
.text {
	color: #fff; /* Disclaimer and main text color */
	padding-bottom:10px;
}

input[type="submit"][disabled] {
	color: #fff; /* Text color of submit button when disabled */
	background-color: #209ab8; /* Background color of submit button when disabled */
}