input[type=text], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;    
}

input[type=text]:focus, input[type=password]:focus {
    background-color: #fff;
    outline: none;
    border:1px solid blue;
}

hr {
    border: 1px solid #0174a3;
    margin-bottom: 10px;
	margin-top: 10px;
}

/* Set a style for all buttons */


button:hover {
    opacity:1;
}

/* Extra styles for the cancel button */
.cancelbtn {
    padding: 14px 20px;
    background-color: #3a8c03;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn {
    float: left;
    width: 48%;
    margin: 10px 6px;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 766px) {
    .cancelbtn, .signupbtn {
       width: 100%;
    }
}