:root{
    --azulClaro: #323683;
    --azul: #ec7400;
    --color-text: #7a7a7a;
}

body{
    font-family: 'Poppins', sans-serif;
    width: 30%;
    margin: auto;
    padding-bottom: 12px;
}

.logo{
    text-align: center;
    margin-bottom: 50px;
}

img{
    width: 190px;
	margin-bottom: 23px;
}

h3 {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    color: var(--azul);
}

h3 span{
    color: var(--azulClaro);
}

h2, p{
    font-weight: 300;
    color: var(--color-text);
    font-size: 14px;
}
.container{
    justify-content: space-between;
}
.form-group{
    margin-top: 30px;
}
span{
    color: var(--azulClaro);
    font-weight: 500;
    font-size: 14px;
}
.pergunta{
    font-weight: 500;
}

label, input{
    font-weight: 300;
    font-size: 14px;
}

select option{
    font-weight: 300;
    font-size: 14px;
}

input[type="radio"]{
    border: 1px solid var(--azul) 
}

input[type="radio"]:checked {
    background-color: var(--azulClaro);
}

.green {
    color: green;
}

.red {
    color: red;
}

.cabecalho p{
    font-weight: 300;
    text-align: justify;
}

.atencao{
    font-weight: 500;
    color: red;
}

.btn-primary{
    margin-top: 20px;
    width: 100%;
    background-color: var(--azulClaro);
    font-family: 'Kanit', sans-serif;
    border-color: var(--azulClaro);
}

.btn-primary:hover{
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    background-color: var(--azul);
    font-family: 'Kanit', sans-serif;
    border-color: var(--azul);
}

.obrigado p{
    font-weight: 300;
    text-align: center;
    color: var(--azul);
}

.erro p{
    font-weight: 500;
    text-align: center;
    color:red;
}

.inline-error p{
    font-weight: 500;
    text-align: center;
    color: darkorange;
}

.titulo {
    color: var(--azul);
    font-weight: 400;
}
.aguarde{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.aguarde p{
    background: var(--azul);
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 2px;
    width: fit-content;

}


@media (max-width: 600px) {
    body{
        width: 90%;
        background-image: url(/img/background.png);
        background-position: inherit;
        background-repeat: no-repeat;
        background-size: 25px;
    }
    
}