form#contact {
	margin: 0 0 30px;
    max-width: 450px;
    clear: both;
}

form#contact label {
    line-height: 1.50;
    font-size: 14px;
    color: #444;
}

form#contact input {
	border: 1px solid #ccc;
    line-height: normal;
    width: 100%;
    max-width: 500px;
    color: #444;
    font-size: 14px;
    padding: 7px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 30px;
}

form#contact textarea {
    border: 1px solid #ccc;
    line-height: 22px;
    width: 100%;
    max-width: 500px;
    color: #333;
    font-size: 12px;
    padding: 7px;
    margin-bottom: 15px;
    height: 120px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

form#contact fieldset { 
	margin-bottom: 10px; 
	padding: 0; 
	border: 0;
}

form#contact #human {
    height: 0;
    width: 0;
    visibility: hidden;  
    display: none;  
}

.msg-green {
	color: #418140;
}

.msg-red {
	color: #b3262f;
}
/* Modernização 2026 - formulário de contato */
form#contact {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
form#contact input,
form#contact textarea {
    border-radius: 10px;
    border: 1px solid #ddd;
    min-height: 42px;
    outline: none;
}
form#contact textarea {
    min-height: 140px;
    font-size: 14px;
}
form#contact input:focus,
form#contact textarea:focus {
    border-color: #d41f3a;
    box-shadow: 0 0 0 3px rgba(212,31,58,.12);
}
form#contact .btn,
form#contact button.btn {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #9a091f, #d41f3a);
    color: #fff;
    padding: 11px 24px;
    cursor: pointer;
    font-weight: 700;
}
.msg-green,
.msg-red {
    padding: 12px 14px;
    border-radius: 10px;
    margin: 10px 0 15px;
}
.msg-green {
    background: #eaf8ee;
    border: 1px solid #bfe8ca;
}
.msg-red {
    background: #fff0f1;
    border: 1px solid #ffc9cf;
}
