.box {
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--color-light-gray);
    background: var(--color-white);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08), 0 50px 50px -40px rgba(0, 0, 0, 0.08);
    display: flex;
    padding: 20px 0;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    opacity: 1;
    transition: 0.2s;
}

.box > *:not(.badge) {
    padding: 0 64px 0 40px;
}

@media (max-width: 450px) {
    .box {
        padding: 10px 0;
    }
}

.box .title {
    color: var(--color-blue);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.75rem;
}

.box .sub-title {
    color: var(--color-black);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.625rem;
    margin-bottom: 0;
}

.box .badge {
    border-radius: 0;
    text-align: center;
}

.box .inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box .inputs .form-control {
    border-radius: 4px;
}

.box .inputs.results {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.box .inputs.results .form-group {
    flex: 1;
}

.box .inputs.results > svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.box .form-group {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: auto;
}

.box .form-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.box .form-group label.append {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.25rem;
    border: 1px solid var(--color-gray);
    background-color: #d9ddde;
}
