/* =========================================
   GLOBAL
========================================= */
body{
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color:#111;
}

/* =========================================
   GLASS CARD
========================================= */
.glass-card{
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius:16px;
    padding:30px;
    box-shadow:0 25px 50px rgba(0,0,0,0.25);
}

/* =========================================
   INPUTS
========================================= */
.form-control{
    border-radius:10px;
    padding:10px 12px;
    border:1px solid #e2e8f0;
}

.form-control:focus{
    border-color:#6366f1;
    box-shadow:0 0 0 2px rgba(99,102,241,0.2);
}

/* =========================================
   BUTTON
========================================= */
.btn-primary{
    background: linear-gradient(135deg,#6366f1,#4f46e5);
    border:none;
    border-radius:10px;
    padding:10px;
    font-weight:500;
}

.btn-primary:hover{
    background: linear-gradient(135deg,#4f46e5,#4338ca);
}

/* =========================================
   TOAST
========================================= */
.lsnc-toast{
    position: fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    z-index:9999;

    background:#fff;
    padding:14px 18px;
    border-radius:12px;

    box-shadow:0 12px 30px rgba(0,0,0,0.15);
    min-width:260px;

    display:none;
}

.lsnc-toast.success{
    border-left:4px solid #22c55e;
}

.lsnc-toast.error{
    border-left:4px solid #ef4444;
}