﻿body {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 14px;
    background-color: #231f1f;
    color: #fff;
}

body, input, select {
    font-family: "Raleway";
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    margin-top: 0;
    display: block;
    font-size: 32px;
    font-weight: 400;
    margin: auto;
}

h2 {
    margin-top: 0;
    display: block;
    font-size: 26px;
    font-weight: 400;
    margin: auto;
    color: #dfd7cd;
}

p {
    font-size: 16px;
    line-height: 37px;
    margin-bottom: 0;
    color: #dfd7cd;
}

*{
    box-sizing: border-box;
    position: relative;
}

.content {
    max-width: 1366px;
    margin: 0 auto;
    padding: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.content.no-flex {
    display: block;
}

header {
    background-color: #231f1f;
    width: 100%;
}

header .content {
    padding-top: 0;
    padding-bottom: 0;
}

header .logo {
    display: block;
    width: 115px;
    margin-left: -20px;
}

header .titulo
{
    color:#fff;
    font-size: 18px;
    font-weight: 500;
}



.pagina
{
    min-height: 100vh;
}

section
{
    text-align: left;
}

section.center
{
    text-align: center;
}


form {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 25px;
    border-top: 1px solid #3c362f;
    padding-top: 50px;
}

form .field {
    width: 100%;
    margin-bottom: 50px;
}


form .field .field-data-container
{
    display: flex;
}

    form .field .field-data-container select {
        flex-shrink: 0;
        flex-grow: 1;
    }
    

form .field label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #dfd7cd;
}

form .field input[type='text'], form .field input[type='email'], form .field input[type='password'], form .field input[type='date'], form .field input[type='number'], form .field input[type='tel'], form .field input[type='time'] {
    display: block;
    width: 100%;
    margin-top: 5px;
    background-color: transparent;
    padding-bottom: 15px;
    font-size: 16px;
    font-family: Raleway;
    border: 0;
    font-weight: 700;
    -webkit-appearance: none;
    border-radius: 0;
    color: #e52329;
    border-bottom: 2px solid #dfd7cd;
    transition: .2s ease-in-out;
    padding-left: 0px;
}


form select {
    font-family: "Raleway";
    background-color: transparent;
    color: #e52329;
    padding: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    border: 2px solid #dfd7cd;

}

select:invalid {
    color: grey;
}

form input[type='submit'] {
    margin-top: 25px;
    border: 0 solid;
    text-decoration: none;
    -webkit-appearance: none;
    font-weight: 600;
    font-family: Raleway;
    -webkit-appearance:none;
}

form .field input:focus {
    border-bottom: 5px solid #e52329;

    outline: none;
}


form .field.cool input:valid,
form .field.cool select:valid{
    color: #4CAF50;
    
}
form .field.cool input:valid:focus,
form .field.cool select:valid:focus{
    border-color: #4CAF50;
}


.btn {
    background-color: #e52329;
    color: #fff;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
}


footer {
    background-color: #231f1f;
    color: #868680;
    border-top: 1px solid #312c2c;
    padding-top: 10px;
    padding-bottom: 25px;
}

footer .content
{
    text-align: center;
}

.texto-rodape {
    line-height: 25px;
}

.logo-rodape {
    max-width: 225px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.link-mes-gratis {
    margin-top: 25px;
    display: block;
    color: #e52329;
    font-weight: 500;
    font-size: 16px;
}

