/* ========================================
   VOXIVO AUTH / LOGIN / 2FA
======================================== */

:root{
    --vx-bg:#f3f6fb;
    --vx-card:#ffffff;
    --vx-text:#0f172a;
    --vx-muted:#64748b;
    --vx-line:#dbe3ee;
    --vx-primary:#0ea5e9;
    --vx-primary-dark:#0284c7;
    --vx-danger:#dc2626;
    --vx-danger-bg:#fef2f2;
    --vx-shadow:0 18px 40px rgba(15,23,42,.08);
    --vx-radius:22px;
}

*{
    box-sizing:border-box;
}

html,
body{
    margin:0;
    padding:0;
    min-height:100%;
    font-family:Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(14,165,233,.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(2,132,199,.10), transparent 24%),
        var(--vx-bg);
    color:var(--vx-text);
}

body{
    min-height:100vh;
}

/* ========================================
   LAYOUT
======================================== */

.vx-auth-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:28px 16px;
}

.vx-auth-shell{
    width:100%;
    max-width:980px;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    background:var(--vx-card);
    border:1px solid rgba(219,227,238,.95);
    border-radius:28px;
    overflow:hidden;
    box-shadow:var(--vx-shadow);
}

.vx-auth-brand{
    position:relative;
    padding:44px 40px;
    background:linear-gradient(145deg, #081833 0%, #0d2852 100%);
    color:#ffffff;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:620px;
}

.vx-auth-brand::after{
    content:"";
    position:absolute;
    inset:auto -80px -80px auto;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(14,165,233,.12);
    filter:blur(2px);
}

.vx-auth-logo{
    display:flex;
    align-items:center;
    gap:12px;
    position:relative;
    z-index:1;
}

.vx-auth-logo img{
    display:block;
    max-width:190px;
    height:auto;
}

.vx-auth-brand-text{
    position:relative;
    z-index:1;
}

.vx-auth-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.10);
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.vx-auth-brand h1{
    margin:0 0 14px 0;
    font-size:34px;
    line-height:1.15;
    letter-spacing:-.02em;
}

.vx-auth-brand p{
    margin:0;
    color:rgba(255,255,255,.82);
    font-size:16px;
    line-height:1.75;
    max-width:440px;
}

.vx-auth-foot{
    position:relative;
    z-index:1;
    color:rgba(255,255,255,.68);
    font-size:13px;
    line-height:1.6;
    margin-top:28px;
}

.vx-auth-card{
    padding:44px 38px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
}

.vx-auth-card-inner{
    width:100%;
    max-width:380px;
}

.vx-auth-title{
    margin:0 0 8px 0;
    font-size:30px;
    line-height:1.15;
    letter-spacing:-.02em;
}

.vx-auth-subtitle{
    margin:0 0 26px 0;
    color:var(--vx-muted);
    font-size:14px;
    line-height:1.7;
}

/* ========================================
   FORM
======================================== */

.vx-auth-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.vx-auth-field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.vx-auth-field label{
    font-size:14px;
    font-weight:700;
    color:var(--vx-text);
}

.vx-auth-input{
    width:100%;
    height:50px;
    border:1px solid var(--vx-line);
    border-radius:14px;
    padding:0 14px;
    font-size:15px;
    color:var(--vx-text);
    background:#ffffff;
    outline:none;
    transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.vx-auth-input:focus{
    border-color:var(--vx-primary);
    box-shadow:0 0 0 4px rgba(14,165,233,.12);
}

.vx-auth-input::placeholder{
    color:#94a3b8;
}

.vx-auth-code{
    text-align:center;
    letter-spacing:.28em;
    font-size:22px;
    font-weight:700;
}

.vx-auth-button{
    width:100%;
    height:50px;
    border:0;
    border-radius:14px;
    background:linear-gradient(90deg, var(--vx-primary-dark), var(--vx-primary));
    color:#ffffff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:transform .16s ease, box-shadow .16s ease, opacity .16s ease;
    box-shadow:0 12px 24px rgba(14,165,233,.22);
    margin-top:4px;
}

.vx-auth-button:hover{
    transform:translateY(-1px);
}

.vx-auth-button:active{
    transform:translateY(0);
}

.vx-auth-note{
    margin-top:16px;
    padding:14px 15px;
    border-radius:14px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    color:var(--vx-muted);
    font-size:13px;
    line-height:1.65;
}

.vx-auth-error{
    margin-bottom:16px;
    border:1px solid #fecaca;
    background:var(--vx-danger-bg);
    color:var(--vx-danger);
    border-radius:14px;
    padding:12px 14px;
    font-size:14px;
    line-height:1.6;
}

.vx-auth-back{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:18px;
    color:var(--vx-muted);
    text-decoration:none;
    font-size:14px;
    font-weight:700;
}

.vx-auth-back:hover{
    color:var(--vx-primary-dark);
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 920px){
    .vx-auth-shell{
        grid-template-columns:1fr;
        max-width:560px;
    }

    .vx-auth-brand{
        min-height:auto;
        padding:30px 24px 26px;
    }

    .vx-auth-brand h1{
        font-size:28px;
    }

    .vx-auth-brand p{
        font-size:15px;
    }

    .vx-auth-card{
        padding:28px 22px 30px;
    }

    .vx-auth-card-inner{
        max-width:none;
    }
}

@media (max-width: 560px){
    .vx-auth-page{
        padding:12px;
    }

    .vx-auth-shell{
        border-radius:22px;
    }

    .vx-auth-brand{
        padding:22px 18px 20px;
    }

    .vx-auth-logo img{
        max-width:150px;
    }

    .vx-auth-kicker{
        font-size:12px;
        padding:7px 10px;
        margin-bottom:14px;
    }

    .vx-auth-brand h1{
        font-size:23px;
    }

    .vx-auth-brand p{
        font-size:14px;
        line-height:1.65;
    }

    .vx-auth-foot{
        margin-top:18px;
        font-size:12px;
    }

    .vx-auth-card{
        padding:22px 16px 22px;
    }

    .vx-auth-title{
        font-size:24px;
    }

    .vx-auth-subtitle{
        font-size:13px;
        margin-bottom:20px;
    }

    .vx-auth-input{
        height:48px;
        font-size:15px;
    }

    .vx-auth-button{
        height:48px;
        font-size:15px;
    }

    .vx-auth-code{
        font-size:20px;
        letter-spacing:.22em;
    }

    .vx-auth-note,
    .vx-auth-error{
        font-size:13px;
    }
}


.vx-password-wrap{
    position:relative;
    width:100%;
}

.vx-auth-input--password{
    padding-right:48px;
}

.vx-password-toggle{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);

    width:30px !important;
    height:30px !important;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    background:transparent;

    cursor:pointer;
    font-size:18px;
    color:#64748b;

    padding:0;
    margin:0;
}

.vx-password-toggle:hover{
    color:#0ea5e9;
}




/* =========================
   AUTH BRAND (LEFT SIDE)
========================= */

/* Container */
.vx-auth-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 60px 50px;
    color: #ffffff;
}

/* Logo Bereich */
.vx-auth-logo {
    display: flex;
    justify-content: center; /* 🔥 mittig */
    margin-bottom: 70px;
}

/* Voxivo Text Logo */
.vx-auth-brand-name {
    font-size: 48px; /* 🔥 größer */
    font-weight: 800;
    letter-spacing: -0.02em;

    background: linear-gradient(90deg, #0d89ff 0%, #18d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-shadow: 0 0 22px rgba(13, 137, 255, 0.3);

    animation: vxFadeIn 1s ease;
}

/* Text Block */
.vx-auth-brand-text h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.vx-auth-brand-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

/* Footer Infos */
.vx-auth-foot {
    margin-top: 50px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.vx-auth-foot a {
    color: #18d0d0;
    text-decoration: none;
    font-weight: 500;
}

.vx-auth-foot a:hover {
    text-decoration: underline;
}

/* Animation */
@keyframes vxFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {

    .vx-auth-brand {
        padding: 50px 30px;
        text-align: center;
        align-items: center;
    }

    .vx-auth-brand-name {
        font-size: 40px;
    }

    .vx-auth-brand-text h1 {
        font-size: 28px;
    }

}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {

    .vx-auth-brand {
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }

    .vx-auth-logo {
        margin-bottom: 20px;
    }

    .vx-auth-brand-name {
        font-size: 32px;
    }

    .vx-auth-brand-text h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .vx-auth-brand-text p {
        font-size: 14px;
    }

    .vx-auth-foot {
        margin-top: 30px;
        text-align: center;
    }

}

 
