/* Contact Form Page*/
.contact-form {
    margin-top: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.contact-form h2 {
    font-family: sage;
    margin-bottom: 0px;
}

.contact-form small {
    margin-top: 0px;
    margin-bottom: 10px;
    font-weight: lighter;
}

.contact-form form {
    margin-top: 20px;;
}

input[type=text], textarea {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;    
    padding: 12px;
    border: 1px solid #ccc;         
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;       /*Allows user to resize veritcally*/
}

input[type=text]:hover, textarea:hover {        /*Hover over text boxes and it will change color*/
    background-color: #f1f1f1;
}

input[type=submit] {
    background-color: #755e5e;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 30px;
}

input[type=submit]:hover {      /*Hover over submit button and it will change color*/
    background-color: #a06f6f;
}

label {
    font-family: sage;
}
