*{
    box-sizing: border-box;
}

body{
    margin:0;
    font-family:'Segoe UI',sans-serif;
    background:#f5f6fa;
}

.login-wrap{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:
        linear-gradient(135deg,#ff4d6d 0%,#ff8fab 100%);
}

.login-card{
    width:100%;
    max-width:360px;
    background:#fff;
    border-radius:22px;
    padding:35px 28px;
    box-shadow:
        0 15px 40px rgba(0,0,0,.18);
    animation:fadeIn .4s ease;
}

.login-brand{
    text-align:center;
    margin-bottom:28px;
}

.logo{
    font-size:58px;
    margin-bottom:10px;
}

#login-title{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#222;
}

.login-brand p{
    margin-top:8px;
    color:#777;
    font-size:14px;
}

.field{
    margin-bottom:18px;
}

.field label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#444;
}

.field input{
    width:100%;
    padding:13px 14px;
    border-radius:12px;
    border:1px solid #e2e2e2;
    outline:none;
    font-size:15px;
    transition:.2s;
    background:#fafafa;
}

.field input:focus{
    border-color:#ff4d6d;
    background:#fff;
    box-shadow:0 0 0 4px rgba(255,77,109,.15);
}

.btn-primary{
    width:100%;
    padding:14px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#ff4d6d,#ff758f);
    color:#fff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
    margin-top:8px;
}

.btn-primary:hover{
    transform:translateY(-1px);
    box-shadow:0 8px 18px rgba(255,77,109,.35);
}

.btn-primary:active{
    transform:scale(.98);
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.demo-box{

    margin-top:20px;
    text-align:center;
}

.demo-box p{

    color:#6b7280;
    font-size:14px;
}

.btn-demo{

    display:inline-block;

    margin-top:10px;

    padding:12px 18px;

    border-radius:12px;

    background:#10b981;

    color:white;

    text-decoration:none;

    font-weight:bold;

    transition:0.2s;
}

.btn-demo:hover{

    transform:scale(1.03);
}

/* GOOGLE LOGIN */

.google-login{

    display:flex;

    justify-content:center;

    margin-bottom:22px;
}

/* SEPARADOR */

.separador{

    position:relative;

    text-align:center;

    margin:20px 0;
}

.separador span{

    background:white;

    padding:0 12px;

    color:#6b7280;

    font-size:13px;

    position:relative;

    z-index:2;
}

.separador::before{

    content:'';

    position:absolute;

    left:0;
    right:0;
    top:50%;

    height:1px;

    background:#e5e7eb;

    z-index:1;
}

/* =========================
   BLOQUE PRUEBA GRATIS
========================= */

.trial-highlight{

    background:linear-gradient(135deg,#fff7ed,#fffbeb);

    border:2px solid #fbbf24;

    border-radius:18px;

    padding:18px;

    margin-bottom:22px;

    text-align:center;

    box-shadow:0 8px 20px rgba(251,191,36,.15);
}

.trial-badge{

    display:inline-block;

    background:#f59e0b;

    color:white;

    font-size:12px;

    font-weight:800;

    padding:6px 12px;

    border-radius:999px;

    margin-bottom:12px;

    letter-spacing:.5px;
}

.trial-highlight h3{

    margin:0 0 10px;

    font-size:20px;

    color:#111827;

    line-height:1.2;
}

.trial-highlight p{

    margin:0;

    font-size:14px;

    color:#4b5563;

    line-height:1.5;
}

/* =====================================
   APK INFO
===================================== */

.apk-info{

    background:#eff6ff;

    border:2px solid #3b82f6;

    border-radius:16px;

    padding:16px;

    margin-top:18px;

    text-align:center;
}

.apk-info h3{

    margin:0 0 10px;

    color:#1d4ed8;

    font-size:18px;
}

.apk-info p{

    margin:0;

    color:#374151;

    line-height:1.5;

    font-size:14px;
}


/* =====================================
   APK DOWNLOAD
===================================== */

.apk-download{

    background:#ecfdf5;

    border:2px solid #10b981;

    border-radius:18px;

    padding:18px;

    margin-top:18px;

    text-align:center;
}

.apk-download h3{

    margin:0 0 10px;

    color:#065f46;

    font-size:20px;
}

.apk-download p{

    margin:0 0 18px;

    color:#374151;

    line-height:1.6;

    font-size:14px;
}

.btn-apk{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 24px;

    border-radius:14px;

    background:#10b981;

    color:white;

    text-decoration:none;

    font-weight:bold;

    font-size:15px;

    transition:.2s;
}

.btn-apk:hover{

    transform:translateY(-2px);

    box-shadow:
    0 12px 25px rgba(16,185,129,.25);
}