label{
    width:100%;
    float:left;
    color: #959595;
    font-size: 14px;
}

input,select,textarea{
    width: 100%;
    height: 40px;
    font-size: 14px;
    padding: 5px;
    border: 1px solid #333;
    border-radius: 3px;
    float: left;
    margin-bottom: 15px;
    color: #333;
    -webkit-appearance: none;   
    -moz-appearance: none;
    appearance:none;
}

select{
    background-image: url('./images/triangulo.png');
    background-position: 98% center;
    background-repeat: no-repeat;
}

input[type="checkbox"]{
    width:18px;
    height: 18px;
    margin-right: 5px;
    position: relative;
}

input[type="checkbox"]:checked::after {
	content: '\f00c';
	position: absolute;
	top: -3px;
	left: 0px;
	font-size: 18px;
	color: #A7D928;
	transition: all .2s;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}