@charset "UTF-8";

/* igonre any text-transform applied to parent input */
/* Chrome/Opera/Safari */
input[placeholder]::-webkit-input-placeholder {
    text-transform: none;
}
/* Firefox 19+ */
input[placeholder]::-moz-placeholder {
    text-transform: none;
}
/* IE 10+ */
input[placeholder]:-ms-input-placeholder {
    text-transform: none;
}
/* Firefox 18- */
input[placeholder]:-moz-placeholder {
    text-transform: none;
}



/* Removes ugly webkit autofill yellow background color */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
input:-webkit-autofill, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}