.beneficiary-search-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-wrapper {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #4e73df, #224abe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(78, 115, 223, 0.35);
}

.icon-style {
    color: #fff;
    font-size: 1.1rem;
}

.subtitle-text {
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #a0aec0;
    line-height: 1;
}

.title-text {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 800;
    color: #2d3748;
    line-height: 1.2;
}

.highlight-blue {
    color: #4e73df;
}

.empresa-cuit-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.empresa-cuit-layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
}

@media (max-width: 768px) {
    .empresa-cuit-layout {
        flex-direction: column;
        align-items: center;
    }
}

/* Card CUIT */
.empresa-cuit-card {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(78, 115, 223, 0.13);
    padding: 2.5rem 2.5rem 2rem;
    border: 1px solid rgba(78, 115, 223, 0.1);
}

.empresa-cuit-card .card-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #4e73df, #224abe);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 20px rgba(78, 115, 223, 0.35);
}

.empresa-cuit-card .card-icon i {
    font-size: 1.7rem;
    color: #fff;
}

.empresa-cuit-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: .35rem;
}

.empresa-cuit-card .subtitle {
    text-align: center;
    color: #a0aec0;
    font-size: .875rem;
    margin-bottom: 2rem;
}

.empresa-cuit-card label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #718096;
    margin-bottom: .5rem;
    display: block;
}

.empresa-cuit-input-wrap {
    display: flex;
    align-items: center;
    background: #f7f8fc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.empresa-cuit-input-wrap:focus-within {
    border-color: #4e73df;
    box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.15);
    background: #fff;
}

.empresa-cuit-input-wrap .cuit-prefix {
    padding: 0 14px;
    font-size: .75rem;
    font-weight: 800;
    color: #4e73df;
    letter-spacing: .08em;
    white-space: nowrap;
    border-right: 2px solid #e2e8f0;
    height: 50px;
    display: flex;
    align-items: center;
    background: #eef1fb;
    transition: border-color .2s;
}

.empresa-cuit-input-wrap:focus-within .cuit-prefix {
    border-right-color: #4e73df;
}

.empresa-cuit-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 16px;
    height: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d3748;
    letter-spacing: .1em;
    outline: none;
}

.empresa-cuit-input-wrap input::placeholder {
    color: #cbd5e0;
    font-weight: 400;
    letter-spacing: .04em;
}

.empresa-cuit-hint {
    font-size: .75rem;
    color: #a0aec0;
    margin-top: .5rem;
}

.empresa-cuit-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: .85rem;
    background: linear-gradient(135deg, #4e73df, #224abe);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(78, 115, 223, 0.4);
    transition: opacity .2s, transform .15s, box-shadow .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.empresa-cuit-btn:hover {
    opacity: .92;
    box-shadow: 0 6px 22px rgba(78, 115, 223, 0.5);
}

.empresa-cuit-btn:active {
    transform: scale(.98);
}

/* Cartel aviso */
.empresa-no-registrada {
    flex: 1;
    min-width: 0;
    background: linear-gradient(145deg, #fffbeb, #fef9ee);
    border: 2px dashed #f6ad55;
    border-radius: 20px;
    padding: 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.empresa-no-registrada .aviso-header {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1rem;
}

.empresa-no-registrada .aviso-icon-grande {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #f6ad55, #d97706);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.empresa-no-registrada .aviso-icon-grande i {
    font-size: 1.3rem;
    color: #fff;
}

.empresa-no-registrada .aviso-header h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #92400e;
    margin: 0;
    line-height: 1.35;
}

.empresa-no-registrada>p {
    font-size: .85rem;
    color: #b45309;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.aviso-pasos {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.5rem;
}

.aviso-paso {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .82rem;
    color: #92400e;
    line-height: 1.5;
}

.aviso-paso .paso-num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #d97706;
    color: #fff;
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
}

.aviso-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1.2rem;
    background: linear-gradient(135deg, #f6ad55, #d97706);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 12px;
    font-size: .875rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
    transition: opacity .2s, box-shadow .2s, transform .15s;
    margin-top: auto;
}

.aviso-btn:hover {
    opacity: .92;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
}

.aviso-btn:active {
    transform: scale(.98);
}