/*
 * Login page — after vionity.de/login (15 September 2026): a split screen,
 * picture with a dark-blue gradient on the left, a white panel with the
 * product name and the login box on the right. Fonts and pictures are local
 * (Metropolis from styles.css, the template's background pattern).
 */
body.login-page,
html.login-page {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    background: #e9edf3;
    overflow: hidden;
}

.login-page a {
    color: #000064;
    text-decoration: none;
}

.login-page .background,
.login-page .login {
    height: 100%;
}

.login-page .background {
    width: 60%;
    background: linear-gradient(45deg, rgb(0 0 60) 0%, rgb(20 20 120) 100%);
}

/* The template's shape pattern as a texture: multiply leaves the white
   ground untouched and draws the grey shapes a shade darker. */
.login-page .background .gradient {
    height: 100%;
    width: 100%;
    background-image: url("/assets/img/backgrounds/bg-pattern-shapes-f10544eca8100262ce520c5192b6f65e.png");
    background-size: 420px;
    mix-blend-mode: multiply;
    opacity: .9;
}

.login-page .login {
    width: 40%;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.22);
    overflow: auto;
    overflow-x: hidden;
}

.login-page .container {
    margin: auto;
    width: 75%;
    max-width: 34rem;
}

.login-page .card-heading {
    padding: 12px 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.login-page .card-heading h1 {
    margin: 0 0 2px 0;
    font-size: 38px;
    line-height: 38px;
    font-weight: 700;
    color: #000064;
}

.login-page .card-heading h1 small {
    display: inline-block;
    margin-left: .35rem;
    font-size: 16px;
    line-height: 18px;
    color: #000064;
    font-weight: 300;
}

.login-page .card-heading p {
    margin: 12px 0 0 0;
    font-weight: 300;
    font-size: 18px;
    color: #000064;
}

.login-page .card-heading .mark {
    width: 100px;
    height: 100px;
    flex: 0 0 auto;
    border-radius: 24px;
    background: rgba(0, 0, 100, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000064;
}

.login-page .card-heading .mark svg {
    width: 52px;
    height: 52px;
}

.login-page .login-form {
    margin-top: 52px;
    background: #fff;
    border: 1px solid #d1d1d1;
    border-radius: 12px;
    padding: 32px 22px;
    box-shadow: 0 1px 22px rgba(0, 0, 0, 0.11);
}

.login-page .login-title {
    color: #000064;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 32px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-page .login-title svg {
    width: 22px;
    height: 22px;
}

.login-page .input-label label {
    color: #404040;
    margin-bottom: 6px;
    display: block;
}

.login-page .input-row {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    position: relative;
    border: 1px solid #d1d1d1;
    margin-bottom: 10px;
    border-radius: 4px;
}

.login-page .input-row input {
    border: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    font-size: 18px;
    color: #000064;
    line-height: 1.2;
    font-weight: 700;
    padding: 0 18px 0 42px;
    border-radius: 4px;
    outline: 2px solid transparent;
    outline-offset: 0;
    transition-duration: .2s;
}

.login-page .input-row input::placeholder {
    font-weight: normal;
    color: #8a929d;
}

.login-page .input-row input:focus {
    outline: 2px solid rgb(0 0 100 / 0.67);
}

.login-page .input-row svg {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: #000064;
    pointer-events: none;
}

.login-page .error {
    color: #c53030;
    border: 1px solid #fc8181;
    padding: 1rem;
    background-color: #fff5f5;
    margin-bottom: 12px;
    border-radius: 6px;
}

.login-page .success {
    color: #2f855a;
    border: 1px solid #68d391;
    padding: 1rem;
    background-color: #f0fff4;
    margin-bottom: 12px;
    border-radius: 6px;
}

.login-page .login-btn-area {
    margin-top: 22px;
}

.login-page .btn-login {
    width: 100%;
    padding: 12px;
    text-align: center;
    color: #fff;
    background: #000064;
    border: 0;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition-duration: .2s;
}

.login-page .btn-login:hover {
    background: #00008f;
}

.login-page .btn-login:active {
    margin-top: 3px;
    margin-bottom: -3px;
    background: #000048;
}

.login-page .login-footer {
    margin-top: 22px;
    text-align: center;
    font-size: 13px;
    color: #69707a;
}

.login-page .login-footer code {
    color: #000064;
}

.login-page .animated {
    animation: fadeIn .5s ease both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media only screen and (max-width: 1350px) {
    .login-page .login {
        width: 70%;
    }

    .login-page .background {
        width: 30%;
    }
}

@media only screen and (max-width: 900px) {
    .login-page .background {
        display: none;
    }

    .login-page .login {
        width: 100%;
        height: auto;
        min-height: 100vh;
    }

    .login-page .container {
        width: 95%;
    }

    .login-page .card-heading {
        text-align: center;
        flex-direction: column-reverse;
        gap: 12px;
        padding: 22px 10px;
    }

    .login-page .login-form {
        margin: 8px;
        padding: 24px;
    }

    .login-page .login-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
}
