.auth-company-register-form {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.auth-plan-picker-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

@media (max-width: 576px) {
    .auth-plan-picker-grid {
        grid-template-columns: 1fr;
    }
}

.auth-plan-card {
    position: relative;
    margin: 0;
    cursor: default;
}

.auth-plan-card--selectable {
    cursor: pointer;
}

.auth-plan-card__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.auth-plan-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-height: 4.5rem;
    padding: 0.65rem 0.4rem;
    border: 1px solid #dbe3f0;
    border-radius: 0.65rem;
    background: #fff;
    text-align: center;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.auth-plan-card--selectable .auth-plan-card__input:focus-visible + .auth-plan-card__body {
    outline: 2px solid var(--mpl-brand-explo);
    outline-offset: 2px;
}

.auth-plan-card--selectable.auth-plan-card--active .auth-plan-card__body,
.auth-plan-card--selectable:has(.auth-plan-card__input:checked) .auth-plan-card__body {
    border-color: var(--mpl-brand-explo);
    box-shadow: 0 0 0 1px var(--mpl-brand-explo);
    background: var(--mpl-brand-explo-soft);
}

.auth-plan-card--soon .auth-plan-card__body {
    opacity: 0.72;
    background: #f8fafc;
}

.auth-plan-card--soon-highlight .auth-plan-card__body {
    border-color: #94a3b8;
    border-style: dashed;
}

.auth-plan-card__title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f172a;
}

.auth-plan-card__price {
    font-size: 0.75rem;
    color: #64748b;
}

.auth-plan-card__soon {
    margin-top: 0.15rem;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}
