@charset "utf-8";




/*  FIELDS  ============================================================================= */
input.modalForm {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	color: #000;
	font-size: 12px;
	box-sizing: border-box;
	border-radius: 0px;
	margin-bottom: 20px;
}




/*  FOCUS & HOVER  ============================================================================= */
input.modalForm:focus {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	color: #000;
	font-size: 12px;
	box-sizing: border-box;
	border-radius: 0px;
	outline-style: none;
}


input.modalFormButton,
input.modalFormButton:focus {
	margin: 0;
	padding: 15px;
	border: 0px;
	font-size: 14px;
	color: #fff;
	outline-style: none;
	transition: all 0.3s ease;
	background: #1c4d85;
	width: 100%;
}

input.modalFormButton:hover {
	margin: 0;
	padding: 15px;
	border: 0px;
	font-size: 14px;
	color: #fff;
	outline-style: none;
	background: #123967;
	transition: all 0.3s ease;
	cursor: pointer;
}

