/* ############################## */
/*              FORM              */
/* ############################## */

#contact-form { margin: 0 auto; }

input[type=text],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 7px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

textarea {
    height: 100px;
    resize: vertical;
}

*:focus {
    outline: none;
}

input[type=submit] {
    padding: 10px 30px;
    font-weight: 300;
    border-radius: 200px;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
    background-color: #d0a134;
    border: 1px solid #d0a134;
    color: #fff;
}

input[type=submit]:hover {
    background-color: black;
    border: 1px solid black;
}

#contact-form a:link,
#contact-form a:visited {
    text-decoration: none;
    color: #3498db;
    border-bottom: 1px solid #2980b9;
    transition: border-bottom 0.2s color 0.2s;
}

#contact-form a:hover,
#contact-form a:active {
    color: #2980b9;
    border-bottom: 1px solid transparent;
}

#rodo {
    margin-right: 3px;
}