/* Anmeldeseite wie im SLZ-Portal: Bild links, weiße Box rechts, immer hell. */

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    color: #1f2528;
    background: #101314;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.45;
}

.login-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    min-height: 100vh;
}

.login-visual {
    background-image: linear-gradient(90deg, rgba(16, 19, 20, 0.22), rgba(16, 19, 20, 0.74)), url("../img/dashboard.jpg");
    background-position: center;
    background-size: cover;
}

.login-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    width: 100%;
    min-height: 100vh;
    padding: 44px;
    background: #fff;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.28);
}

.login-logo {
    width: 220px;
    height: auto;
    margin-bottom: 10px;
}

h1 {
    margin: 0 0 8px;
    font-size: 2rem;
    line-height: 1.1;
}

.login-intro {
    margin: -8px 0 0;
    color: #56696e;
}

label {
    display: grid;
    gap: 7px;
    color: #31484d;
    font-weight: 800;
}

input {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    color: #1f2528;
    border: 1px solid #d9e2e4;
    border-radius: 8px;
    font: inherit;
}

input:focus {
    outline: 3px solid rgba(127, 166, 173, 0.22);
    border-color: #7fa6ad;
}

input.code-input {
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    text-align: center;
}

button {
    min-height: 46px;
    margin-top: 4px;
    padding: 11px 16px;
    color: #fff;
    border: 0;
    border-radius: 8px;
    background: #5d7f84;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

button:hover {
    background: #31484d;
}

.notice {
    margin: 0;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 700;
}

.notice.success {
    color: #14532d;
    background: #dcfce7;
}

.notice.error {
    color: #7f1d1d;
    background: #fee2e2;
}

.notice.warning {
    color: #7a4400;
    background: #fff1d8;
}

.login-link {
    display: inline-block;
    color: #5f8a91;
    font-weight: 800;
    text-decoration: none;
}

.login-footer {
    margin-top: 8px;
    color: #66767b;
    font-size: 0.85rem;
}

@media (max-width: 820px) {
    .login-page {
        grid-template-columns: 1fr;
    }

    .login-visual {
        min-height: 220px;
    }

    .login-box {
        min-height: auto;
        padding: 28px;
        box-shadow: none;
    }
}
