html, body {
    min-height: 100vh;
    height: 100%;
}

.h-100 {
    height: 100%;
}

body {
    background: url("../img/bg-formulario-sesmart.webp") center bottom;
    background-size: cover;
}

body:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: .5;
}

.container {
    position: relative;
    padding: 0 20px;
    z-index: 9999;
    width: 100%;
    max-width: 1240px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    color: #fff;
}

.form-group .form-control {
    border: 1px solid #333;
    padding: 10px 15px !important;
    width: 100%;
    border-radius: 30px;
}

.d-flex {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.d-flex.align-center {
    align-items: center;
}

.d-flex .form-group-ddd {
    flex: 0 0 20%;
}

.d-flex .form-group-phone {
    flex: auto;
}

.text-center {
    text-align: center;
}
.logo{
    margin-bottom: 50px;
}

.text-light{
    color: #eee;
}

.no-wrap{
    flex-wrap: nowrap;
}
@media(max-width: 720px){
    form{
        margin-top: 20px;
    }
}
@media (min-width: 720px) {

    .linha {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .linha .coluna-inteira {
        flex: 0 0 100%;
    }

    .linha .coluna {
        flex: 0 0 50%;
    }

}