@charset "utf-8";
/* CSS Document */

*{ padding: 0; margin: 0; outline: none; -webkit-transition: all 100ms ease; -moz-transition: all 100ms ease; -ms-transition: all 100ms ease; -o-transition: all 100ms ease; transition: all 100ms ease;}

form{ min-height:500px; width: 90%; margin: auto; font-family: 'Poppins', sans-serif;}

form label,
form input,
form select,
form textarea{ width: 100%; padding: 5px;}


form input:focus,
form select:focus,
form textarea:focus{ background-color:#eee;}

form textarea{ resize: none; height: 100px}
form select{ width: 104%}

input[type="submit"]{ width: 30%; padding: 8px 15px; background-color:  #1076bc; color: #fff; border-radius: 5px; border: solid 1px #1076bc;
}
input[type="submit"]:hover{ cursor: pointer; width: 30%; padding: 8px 15px; background-color:  #fff; color: #1076bc; border-radius: 5px; border: solid 1px #1076bc;}
input[type="submit"]:active{ background:#13a7e1;}

