/* Eigenständiges Login-Layout, damit keine Regeln der Hauptanwendung kollidieren. */
html,
body.wolf-login-page {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body.wolf-login-page {
    min-height: 100vh;
    overflow-x: hidden;
    background: #1b1b1b !important;
    color: #282828;
}

.wolf-login-layout {
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(420px, 42%);
    min-height: 100vh;
    width: 100%;
}

.wolf-login-brand {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(2rem, 5vw, 5rem);
    background:
        radial-gradient(circle at 15% 15%, rgba(243, 111, 44, .20), transparent 32%),
        linear-gradient(135deg, #181818 0%, #303030 58%, #171717 100%);
    color: #fff;
}

.wolf-login-logo-box {
    width: min(100%, 650px);
    padding: clamp(.8rem, 1.7vw, 1.4rem);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

.wolf-login-logo {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 260px;
    object-fit: contain;
}

.wolf-login-welcome {
    width: min(100%, 650px);
    margin-top: 2.5rem;
}

.wolf-login-accent {
    width: 74px;
    height: 5px;
    margin-bottom: 1.4rem;
    border-radius: 10px;
    background: #f36f2c;
}

.wolf-login-welcome h1 {
    margin: 0 0 .8rem;
    font-size: clamp(2rem, 3.5vw, 3.6rem);
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -.035em;
}

.wolf-login-welcome p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.wolf-login-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: clamp(1.5rem, 4vw, 4rem);
    background: #fff;
}

.wolf-login-card {
    width: min(100%, 480px);
}

.wolf-login-card .page-kicker {
    display: inline-block;
    color: #cf541a;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.wolf-login-card h2 {
    margin: .45rem 0 .45rem;
    color: #171717;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 750;
    letter-spacing: -.03em;
}

.wolf-login-card .form-control,
.wolf-login-card .input-group-text,
.wolf-login-card .password-toggle {
    min-height: 52px;
}

.wolf-login-card .input-group-text {
    width: 54px;
    justify-content: center;
}

.wolf-login-card .btn-primary {
    min-height: 52px;
    background: #f36f2c;
    border-color: #f36f2c;
}

.wolf-login-card .btn-primary:hover,
.wolf-login-card .btn-primary:focus {
    background: #cf541a;
    border-color: #cf541a;
}

@media (max-width: 991.98px) {
    .wolf-login-layout {
        grid-template-columns: 1fr;
    }

    .wolf-login-brand {
        min-height: auto;
        padding: 2rem 1.25rem;
        align-items: center;
        text-align: center;
    }

    .wolf-login-logo-box {
        width: min(100%, 480px);
    }

    .wolf-login-logo {
        max-height: 185px;
    }

    .wolf-login-welcome {
        width: min(100%, 560px);
        margin-top: 1.5rem;
    }

    .wolf-login-accent {
        margin-left: auto;
        margin-right: auto;
    }

    .wolf-login-form-side {
        min-height: 520px;
        padding: 2.5rem 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .wolf-login-brand {
        padding: 1.25rem 1rem;
    }

    .wolf-login-logo-box {
        padding: .65rem;
        border-radius: 12px;
    }

    .wolf-login-logo {
        max-height: 130px;
    }

    .wolf-login-welcome h1 {
        font-size: 1.8rem;
    }

    .wolf-login-welcome p {
        font-size: .95rem;
    }

    .wolf-login-form-side {
        min-height: auto;
        padding: 2rem 1rem 2.5rem;
    }
}
