.acym_module_form [type="email"],
.acym_module_form [type="text"] {
	height: 40px;
	vertical-align: middle;
	display: inline-block;
	border: 1px solid #eee;
    	max-width: 400px;
    	width: 100%;
    	padding: 0 10px;
    	background: #fff;
    	color: #313e4f;
    	transition: .2s ease-in-out;
    	transition-property: color, background-color, border-color, box-shadow;
}

.acym_module_form [type="email"]:focus,
.acym_module_form [type="text"]:focus {
	outline: 0;
	background-color: #fff;
	color: #19365d;
	border-color: #00204d;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .07);
}

.acym_module_form .checkbox {
	display: inline-block;
	height: 16px;
	width: 16px;
	overflow: hidden;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	transition: .2s ease-in-out;
	transition-property: background-color, border-color, box-shadow;
	border: 1px solid #dcdcdc;
}

.acym_module_form .checkbox:checked {
	background-color: #607cb3;
	border-color: transparent;
	background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A);
}