* {
    margin: 0;
    padding: 0;
}

#titulo {
   font-family: sans-serif; 
    color: #2f4cbf;
    margin-left: 7%;
}

#subtitulo {
    font-family: sans-serif; 
    color: #2f4cbf;
    margin-left: 10%;
    margin-top:0.5em;
}

fieldset {
    border: 0;
    margin-top: 1.5em;
}

body {
    background-color: #f0f8ff;
    font-family: sans-serif;
    font-size: 1em;
    color: #2f4cbf;
    margin-left: 36%;
    margin-top: 2%;
    justify-content: center;
}

input, select, textarea, button {
    border-radius: 5px;
}

textarea {
    margin-top: 1.5em;
}


.campo {
    margin-bottom: 1em;
}

.campo label {
    margin-bottom: 0.2em;
    color: #2f4cbf;
    display: block;
}

fieldset.box-content .campo {
    float: left;
    margin-right: 1em;
}

.campo label[type="text"], .campo label[type="email"], .campo label[type="number"], .campo select, .campo textarea {
    padding: 0.2px;
    border: 1px solid #2f4cbf;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    display: block;
}

.campo select option {
    padding-right: 1em;
}

.campo input:focus, .campo select:focus, .campo textarea:focus {
    background: #e0e0f8;
}

.botao {
    font-size: 1.2em;
    background: #2f4cbf;
    margin-bottom: 2em;
    color: #ffffff;
    padding: 0.2em 0.6em;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    position: absolute;
    top: 92.5%;
    left: 50%;
    margin-right: -50%;
    transform: translate (-50%, -50%);
}

.botao:hover {
    background: #ccbbff;
}

.box-content {
    margin-top: 2.5em;
}


