/* ==================================================
   BOTÃO ENVIAR DO FORMULÁRIO DE CONTATO
   HTML:
   <form id="contactform">
   <input id="submit" class="readmore">
================================================== */

#contactform #submit {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    margin-top: 30px !important;
    padding: 15px !important;

    background-color: #ffff00 !important;
    color: #ffffff !important;

    font-size: 18px !important;
    font-weight: bold !important;
    text-align: center !important;

    border: none !important;
    border-radius: 5px !important;

    box-sizing: border-box !important;

    cursor: pointer !important;

    opacity: 1 !important;

    position: relative !important;
    z-index: 1 !important;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease !important;
}


/* ==================================================
   EFEITO AO PASSAR O MOUSE
================================================== */

#contactform #submit:hover {
    background-color: #0000ff !important;

    transform: scale(1.05) !important;

    opacity: 1 !important;
}