.auth-layout
{
    max-width: 1450px;
    margin: 0 auto;
}

.auth-layout > div
{
    display: flex;
}

.hero-title
{
    margin: 0;
    font-size: clamp(1.16rem, 1.15vw, 1.42rem);
    line-height: 1.28;
    letter-spacing: -0.01em;
	font-family: var(--font-secondary);
	font-weight: 600;
}

.hero-text
{
    margin-top: 10px;
    color: var(--hr-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 860px;
}

.feature-grid
{
    margin-top: 22px;
}

.feature-item
{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    min-height: 100%;
    padding: 16px;
    border-radius: var(--hr-radius);
    background: linear-gradient(180deg, #fafbfd 0%, #f6f8fb 100%);
    border: 1px solid rgba(32, 49, 69, 0.08);
    box-shadow: var(--hr-shadow-soft);
}

.feature-item p
{
    margin: 6px 0 0;
    color: var(--hr-muted);
    font-size: 0.91rem;
    line-height: 1.55;
}

.feature-item i
{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
	width: 45px;
    height: 45px;
	margin-top: 5px;
    border-radius: var(--hr-radius-small);
    background: rgba(47, 94, 144, 0.1);
    color: var(--hr-primary);
}

.feature-item strong
{
    display: block;
    font-size: 1.2rem;
    color: var(--hr-text);
	font-family: var(--font-secondary);
}

.login-card
{
    margin-left: 0;
}

.uk-card-title
{
	font-family: var(--font-header);
	font-style: italic;
	font-size: 1.8rem;
}

.login-card-brand
{
	text-align: center;
    margin-bottom: 16px;
}

.login-card-logo
{
    width: auto;
    height: 130px;
    object-fit: contain;
}

/* ========================================================================
   Responsive Login-Seite
 ========================================================================== */

@media (max-width: 1400px)
{
    .feature-grid > div
    {
        width: 100%;
    }

	.auth-layout > div:last-of-type
	{
		width: calc(100% / 2.5);
	}

}

@media (max-width: 1200px)
{
    .auth-layout
    {
	    justify-content: center;
    }

	.auth-layout > div:first-of-type
    {
        display: none;
    }

	.auth-layout > div:last-of-type
    {
        padding: 0;
		min-width: 450px;
    }
}

@media (max-width: 640px)
{
    .auth-layout
    {
        width: 100%;
    }

    .auth-layout > div:last-of-type
    {
        width: 100%;
        min-width: 0;
    }

    .login-card-logo
    {
        height: 96px;
    }

    .login-card .uk-card-body
    {
        padding: 22px 18px;
    }
}

/* ========== Ende Responsive Login-Seite ============= */
