/*#cpf{*/
/*    height: 45px;*/
/*    width: min(90vh, 300px);*/
/*    font-size: 24px;*/
/*}*/
.position-absolute{
    position: absolute;
}
.position-relative{
    position: relative;
}
footer{
    position: absolute;
    bottom: 0;
}
.conteudo{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100vw;
    flex-wrap: wrap;
    padding: 0 15px;
}
.d-flex{
    display: flex;
}
.justify-content-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
.w-40 {
    width: 40%;
}
.w-45 {
    width: 45%;
}
.content {
    display: flex;
    margin-bottom: 50px;
    flex-wrap: wrap;
    width: 70%;
}
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 75%;
    margin: auto;
    padding: 20px;
}
.d-flex-custom {
    display: flex;
    justify-content: space-between;
}
.d-flex-custom .form-group{
    width: 45%;
}
@media screen and (max-width: 768px){
    .content {
        width: 100%;
    }
    .main{
        width: 100%;
    }
    .d-flex-custom .form-group{
        width: 100%;
    }
    .d-flex-custom {
        flex-wrap: wrap;
    }
}