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

/* Bordered form */
form {

}

/* Full-width inputs */
input[type=text], input[type=password] {
    width: 25%;
    margin: 5px 20px;
	height: 40px;
	text-align:center;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}


input[type=button]{
    background-color: #4CAF50;
	 text-align: center; 
    color: white;
    margin: 5px 20px;
	height: 40px;
    width: 25%;
    border: none;
    cursor: pointer;
	-webkit-appearance: none;
}
input[type=button]:hover{
    opacity: 0.8;
}


input[type=submit]{
    background-color: #4CAF50;
	 text-align: center; 
    color: white;
    margin: 5px 20px;
	height: 40px;
    width: 25%;
    border: none;
    cursor: pointer;
	-webkit-appearance: none;
}
input[type=submit]:hover{
    opacity: 0.8;
}
