.bg-green {
    background: var(--Green-Background);
    height: 240px;
    width: 100%;
}

.input-label-conteiner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

.search-container {
    display: flex;
    height: 40px;
    width: 100%;
    max-width: 340px;
    padding: 0 12px;
    align-items: center;
    gap: 12px;
    border-radius: 5px;
    border: 1px solid var(--Colors-Medium-Grey, #CECECE);
    background: var(--Colors-White, #FFF);
}

.input-text {
    border: 0;
}

    .input-text:focus {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

.input-form {
    display: flex;
    height: 44px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    font-family: Inter;
    font-size: 19px;
    padding: 0 12px;
}

.input-container-doble {
    display: flex;
    gap: 40px;
    width: 100%;
}

.container-buttons {
    display: flex;
    border-top: 2px solid #eaeaea;
    padding: 12px 0;
    gap: 16px;
    justify-content: end;
}

.input-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    fill: var(--Colors-White, #FFF);
    stroke-width: 1px;
    stroke: var(--Colors-Medium-Grey, #CECECE);
}


.component-flex-parent {
    display: flex;
    width: 100%;
    gap: 12px;
    justify-content: space-between;
}

.component-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}



@media (max-width: 768px) {

    .component-flex-parent {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .att-search {
        width: 100%;
    }


    .component-flex {
        width: 100%;
        flex-direction: column;
    }
}


