﻿:root {
    --bg1: #eaf2f7;
    --bg2: #dfeaf3;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: rgba(15,23,42,.12);
    --accent: #0a7f8c;
    --accent2: #0a6f7a;
    --shadow: 0 28px 80px rgba(2,8,23,.22);
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(900px 700px at 30% 20%, rgba(10,127,140,.16), transparent 60%), radial-gradient(900px 700px at 80% 35%, rgba(100,116,139,.14), transparent 60%), linear-gradient(180deg, var(--bg1), var(--bg2));
    color: var(--text);
}

.tlx-auth__wrap {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.tlx-card {
    width: 100%;
    max-width: 560px;
    border-radius: 22px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.65);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.tlx-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.60));
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.tlx-logo {
    width: 78px;
    height: auto;
    display: block;
}

.tlx-brand__title {
    font-weight: 800;
    font-size: 22px;
    opacity: .8;
    line-height: 1.1;
}

.tlx-brand__sub {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
}

.tlx-form {
    padding: 22px 26px 18px;
}

.tlx-label {
    display: block;
    margin: 0 0 7px 2px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 700;
}

.tlx-input {
    position: relative;
}

.tlx-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(100,116,139,.95);
    pointer-events: none;
}

.tlx-input__control {
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(15,23,42,.14);
    background: rgba(219,234,254,.35); /* leicht blau wie im Mockup */
    padding-left: 42px;
    padding-right: 46px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
    transition: box-shadow .15s, border-color .15s;
}

    .tlx-input__control:focus {
        border-color: rgba(10,127,140,.55);
        box-shadow: 0 0 0 4px rgba(10,127,140,.12);
        outline: none;
    }

.tlx-input__toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 0;
    background: transparent;
    color: rgba(100,116,139,.95);
    cursor: pointer;
}

    .tlx-input__toggle:hover {
        background: rgba(2,8,23,.06);
    }

.tlx-eye {
    width: 18px;
    height: 18px;
}

.tlx-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 12px 0 14px;
}

.tlx-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.tlx-check__box {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.tlx-check__text {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}

.tlx-btn {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 0;
    font-weight: 900;
    letter-spacing: .2px;
    color: #fff;
    background: linear-gradient(180deg, var(--accent), var(--accent2));
    box-shadow: 0 16px 34px rgba(10,127,140,.28);
}

    .tlx-btn:hover {
        filter: brightness(1.03);
    }

    .tlx-btn:active {
        transform: translateY(1px);
    }

.tlx-footer {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(15,23,42,.10);
    text-align: center;
    color: rgba(100,116,139,.85);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 480px) {
    .tlx-card {
        border-radius: 18px;
    }

    .tlx-form {
        padding: 18px 18px 16px;
    }

    .tlx-card__header {
        padding: 18px 18px;
    }
}
