
input[type=text] {
    padding: 5px; 
    border: 1px solid #ccc; 
    -webkit-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    font: 18px Calibri, sans-serif;
    color: black;
}

textarea {
    width: 100%;
    height: 200px;
    padding: 5px 5px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    -webkit-border-radius: 5px;    
    border-radius: 5px;
    //background-color: #f8f8f8;
    resize: auto;
    font: 18px Calibri, sans-serif; 
    color: black;
}

input[type=password] {
	width: auto;
    padding: 5px; 
    border: 1px solid #ccc; 
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font: 18px Calibri, sans-serif;
    color: black;
}

input[type=text]:focus {
    border-color: #ccc;
    border-radius: 5px;
}

input[type=textarea]:focus {
    border-color: #ccc;
    border-radius: 5px;
}

input[type=submit] {
    padding: 5px 15px; 
    background: #c0c0c0; 
    border: 0 none;
    cursor: pointer;
    text-transform: uppercase;
    color: brown;
    -webkit-border-radius: 5px;
    border-radius: 5px; 
    outline: 0;
}

input[type=submit]:hover {
	box-shadow: 0 6px 10px 0 rgba(0,0,0,0.24),0 6px 10px 0 rgba(0,0,0,0.19);
}