.company-title{
    margin-top: 2.5rem;
}

.company-search{
    width: 100%;
    margin-top: 2rem;
    position: relative;

background: var(--component-bg, #FFF);
}
.company-search .search-icon{
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
height: 1rem;
}

.company-search input{
    padding: 0.3125rem 2.125rem 0.3125rem 2rem;

    width: 100%;
        border-radius: 0.125rem;
border: 1px solid var(--borders-component-border, #EBEBEB);
}

.form-group{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
}

.company-list-form{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.company-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow-y: auto;
    scrollbar-color: #C4C4C4;
    scrollbar-width: thin;
    flex: 1;
    min-height: 0;
    margin-bottom: 2rem;
}

.company-list .company-item {
padding: 0.3125rem 2.125rem 0.3125rem 0.625rem;
    cursor: pointer;
border-radius: 0.125rem;
border: 1px solid var(--borders-component-border, #EBEBEB);
background: var(--component-bg, #FFF);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

    color: var(--text-colors-base-text, #1C1C1C);
font-feature-settings: 'liga' off, 'clig' off;
/* Base Text/Base Text */
font-family: "Open Sans";
font-size: 0.875rem;
font-style: normal;
font-weight: 400;
line-height: 1.25rem;
}

.company-list .company-item:hover {
    background-color: #FFFBEB;

}

.company-list .company-item.selected {
      border-radius: 0.125rem;
    border: 2px solid var(--primary-colors-brand-login-brand-primary, #FFCF00);
}

.validation-error-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.validation-error-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    padding-left: 2.5rem;
    background-color: #FEE;
    background-image: url('/images/icons/cancel.svg');
    background-repeat: no-repeat;
    background-position: 1rem center;
    background-size: 1rem 1rem;
    border-left: 4px solid #F31700;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
    color: #1C1C1C;
    font-family: "Open Sans";
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
}