@charset "utf-8";

* {
    margin: 0px;
    padding: 0px;
}

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

#subtitulo {
    font-family: sans-serif;
    margin-left: 10%;
}

#check {
    display: inline-flex;
}

#check > input, label {
    margin-left: 5px;
}

fieldset {
    border: 0;
}

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

input, select, textarea, button {
    font-family: sans-serif;
    font-size: 1em;
    border-radius: 5px;
}

.campo {
    margin-bottom: 1em;
}

.campo label {
    margin-bottom: 0.2em;
    display: block;
}

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

.campo input[type="text"], .campo input[type="email"], .campo select, .campo textarea {
    padding: 0.2em;
    border: 1px solid black;
    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-color: #E0E0F8;
}

.botao {
    font-size: 1.2em;
    background: #d8ecff;
    border: 1px solid black;
    margin-bottom: 1em;
    padding: 5px;
    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: 96%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.botao:hover {
    background: #b4d4ff;
    box-shadow: inset 2px 2px 2px rgba(0,0,0,0.2);
    box-shadow: none;
}

.botao, select {
    cursor: pointer;
}

.labelTitulo {
    font-weight: bold;
}