.auth-shell--split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.2rem;
    align-items: stretch;
}

.auth-story {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.8rem;
    min-height: 100%;
}

.auth-story-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.05;
    margin-bottom: 0.8rem;
}

.auth-story-text {
    color: var(--text-tech);
    margin-bottom: 1.2rem;
}

.client-auth-info-card {
    margin-bottom: 1rem;
}

.client-auth-info-card h3 {
    margin-bottom: 0.5rem;
}

.auth-form-control,
.auth-form input,
.auth-form select {
    width: 100%;
    background: rgba(6, 10, 16, 0.7);
    border: 1px solid rgba(0, 255, 234, 0.15);
    color: #fff;
    padding: 0.75rem 0.9rem;
}

.auth-form input:focus,
.auth-form select:focus {
    border-color: rgba(0, 255, 234, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 234, 0.15);
    outline: none;
}

@media (max-width: 991px) {
    .auth-shell--split {
        grid-template-columns: 1fr;
    }

    .auth-story {
        order: 2;
    }
}
