.business-option {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
    margin-bottom: 10px;
}

.business-option.selected {
    border-color: #733544;
    background-color: #151521;
}

.d-none {
    display: none !important;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.day-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
}

.day-row label {
    margin-left: 10px;
    margin-right: 10px;
}

.is-invalid {
    /* border: none; */
}

.newSignup__bg {
    background-color: #151521;
    /* background-image: url(../images/background.png); */
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: contain;
    height: calc(var(--vh, 1vh)* 100);
    margin: 0;
    padding: 2em;
    overflow: hidden;
    position: relative;
    color: white;
    width: 100%;
}

.newSignup__bg {
    display: block;
    padding: 4em;
    width: 50vw;
    height: 100%;
}

.newSignup__content {
    justify-content: center;
    display: flex;
    align-self: center;
    width: 50vw;
}

.newSignup {
    align-items: center;
    display: flex;
    min-height: 100vh;
    height: 100vh;
    justify-content: center;
    background-color: #151521;
}

.newSignup__bgHeader {
    text-align: left;
    width: 140px;
}

.newSignup__titleContainer {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    height: calc(var(--vh, 1vh)* 70);
    width: 100%;
    max-width: 620px;
}

.newSignup__titleContainer {
    height: calc(100vh - 8em);
}

.wizard .actions a {
    background-color: #733544;
    /* Cor de fundo padrão dos botões */
    color: white;
    /* Cor do texto dos botões */
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px;
}

.wizard .actions a:hover {
    background-color: #733544;
    /* Cor de fundo dos botões ao passar o mouse */
    color: white;
}

.wizard .steps ul li.first a {
    background-color: #733544;
    /* Cor de fundo do passo atual */
}

.wizard .steps li.checked a {
    background-color: #733544;
    /* Cor de fundo do passo atual */
}

.form-control:focus {
    border-color: #733544;
    /* Cor da borda quando focado */
    outline: none;
    /* Remove o contorno padrão do navegador */
}

@media (max-width: 767px) {
    .newSignup__content {
        padding: 2em;
        position: relative;
        width: 100%;
        display: block;
    }

    .newSignup__bg {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .newSignup__button {
        background: #733544;
        -webkit-border-radius: 6px;
        border-radius: 6px;
        border: none;
        outline: none;
        color: #735447;
        cursor: pointer;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
        width: 100%;
        margin: 2em 0 1em;
        padding: 1.25em 2em;
    }

    .newSignup__arrowContainer {
        align-items: center;
        display: flex;
        left: 0;
        justify-content: center;
        position: absolute;
        bottom: 18%;
        height: 170px;
        width: 100vw;
    }

    .newSignup__button--inverted {
        background: #fff;
        color: #733544;
        max-width: 85%;
    }

    .hidden {
        display: none;
    }
}