/****************************************/
/*      Contact Form                    */
/****************************************/
.contactForm
{
	padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}
.contactForm:hover
{
	border-color: transparent;
    box-shadow: 0 0 30px rgb(0 0 0 / 10%);
}
.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}
.form-group .astrisx
{
	float: right;
	height: 0px;
	font-size: 20px;
	color: red;
	position: absolute;
	top: 14px;
	right: 5px;
	margin: 0 5px;
}
.form-group .alert-custom
{
	margin-top: 2px;
	padding: 5px 10px;
	display: none;
}
.form-group i
{
	height: 0;
	position: absolute;
	top: 15px;
	left: 10px;
	float: left;
	color: #999;
}
.form-group i.icon-send
{
	position:unset;
	margin: auto;
	color: #fff;
	height: 16px;
	float: none;
	margin-right: 10px;
}
.form-control-input {
	display: block; /* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: .5rem;
	padding-bottom: 1rem;
	padding-left: 2rem;
	border: 1px solid #c4d8dc;
	border-radius: 0.25rem;
	background-color: #fff;
	color: #626262;
	font: 400 0.875rem/1.875rem 'Open Sans', sans-serif;
	transition: all 0.2s;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
	.form-control-input {
		padding-top: 1.25rem;
		padding-bottom: 0.75rem;
		line-height: 1.75rem;
	}
}

.form-control-textarea {
	display: block; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 6rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 1.25rem;
	padding-left: 1.3125rem;
	border: 1px solid #c4d8dc;
	border-radius: 0.25rem;
	background-color: #fff;
	color: #626262;
	font: 400 0.875rem/1.75rem 'Open Sans', sans-serif;
	transition: all 0.2s;
}

.form-control-input:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.form-control-submit-button {
	display: inline-block;
	height: 3rem;
	width: 100%;
	border: 1px solid #343148;
	border-radius: 1.5rem;
	background-color: #343148;
	color: #fff;
	font: 700 0.75rem/1.75rem 'Open Sans', sans-serif;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover,
.form-control-submit-button:hover .icon-send  {
	background-color: transparent;
	color: #343148
;
}
