body {
    background-image: linear-gradient(rgba(15, 23, 42, .16), rgba(15, 23, 42, .16)), url('/media/company_media/Login%20Seite/Login%20Seite%20.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.wrap {
    max-width: none;
    margin: 0;
    min-height: 100vh;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-shell {
    max-width: 460px;
    width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .22);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    backdrop-filter: blur(14px) saturate(135%);
}
.auth-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}
.auth-logo {
    display: block;
    width: auto;
    height: 256px;
    max-width: 100%;
    object-fit: contain;
}
.auth-form {
    display: grid;
    gap: 8px;
}
.auth-field label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1f3f68;
    margin-bottom: 4px;
}
.auth-input {
    width: 100%;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 9px;
    background: rgba(255, 255, 255, .24);
    padding: 0 12px;
    font-size: 14px;
    color: #1e293b;
    outline: none;
}
.auth-input:focus {
    border-color: rgba(14, 165, 233, .8);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, .18);
    background: rgba(255, 255, 255, .34);
}
.auth-pass-wrap {
    position: relative;
}
.auth-pass-wrap .auth-input {
    padding-right: 44px;
}
.auth-pass-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.auth-pass-toggle svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.auth-submit {
    width: 100%;
    border: 0;
    border-radius: 10px;
    min-height: 38px;
    background: #0f84c5;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0;
}
.auth-link-row {
    text-align: center;
    margin-top: 8px;
}
.auth-link-row a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(15, 23, 42, .45);
}
.auth-error {
    color: #b91c1c;
    font-size: 13px;
    margin: 2px 0 0;
}
@media (max-width: 640px) {
    .wrap {
        padding: 12px;
    }
    .auth-shell {
        padding: 16px;
    }
    .auth-logo {
        height: 208px;
        max-width: 100%;
    }
    .auth-field label { font-size: 14px; }
    .auth-input { font-size: 13px; height: 34px; }
    .auth-submit { font-size: 15px; min-height: 36px; }
    .auth-link-row a { font-size: 13px; }
}