/* =========================================================
   THE ADVERTISERS
   Premium Admin Login
========================================================= */

:root{

    --primary:#4F46E5;
    --primary-dark:#3730A3;
    --secondary:#7C3AED;

    --white:#ffffff;

    --text:#1F2937;
    --text-light:#6B7280;

    --border:#E5E7EB;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    background:#EEF2FF;

}

/* ===============================
    Background
================================*/

.login-bg{

    min-height:100vh;

    background:
            linear-gradient(135deg,#4338CA 0%,#6366F1 40%,#7C3AED 100%);

    position:relative;

    overflow:hidden;

}

/* ===============================
    Floating Circles
================================*/

.blob{

    position:absolute;

    border-radius:50%;

    filter:blur(30px);

    opacity:.28;

    animation:float 10s ease-in-out infinite;

}

.blob-1{

    width:260px;
    height:260px;

    background:#ffffff;

    top:-80px;
    left:-80px;

}

.blob-2{

    width:340px;
    height:340px;

    background:#C4B5FD;

    bottom:-120px;
    right:-120px;

    animation-delay:2s;

}

.blob-3{

    width:180px;
    height:180px;

    background:#A5B4FC;

    top:35%;
    left:45%;

    animation-delay:4s;

}

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-25px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* ===============================
    Left Section
================================*/

.brand-title{

    font-size:3.4rem;

    font-weight:800;

    color:#fff;

    line-height:1.1;

}

.brand-subtitle{

    color:rgba(255,255,255,.88);

    font-size:1.1rem;

    margin-top:18px;

    line-height:1.8;

}

.feature-box{

    display:flex;

    align-items:center;

    gap:15px;

    padding:16px 20px;

    margin-top:15px;

    border-radius:18px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.18);

    transition:.35s;

}

.feature-box:hover{

    transform:translateX(10px);

    background:rgba(255,255,255,.18);

}

.feature-icon{

    width:50px;
    height:50px;

    display:flex;

    justify-content:center;
    align-items:center;

    border-radius:15px;

    background:#fff;

    color:var(--primary);

    font-size:20px;

}

.feature-title{

    color:#fff;

    font-size:17px;

    font-weight:600;

}

.feature-text{

    color:rgba(255,255,255,.75);

    font-size:13px;

}

/* ===============================
      Login Card
================================*/

.login-card{

    background:rgba(255,255,255,.95);

    border-radius:28px;

    padding:45px;

    box-shadow:

            0 25px 70px rgba(0,0,0,.18);

    backdrop-filter:blur(25px);

}

.logo{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    box-shadow:0 12px 25px rgba(79,70,229,.25);

}

/* ===============================
    Input
================================*/

.input-group{

    margin-top:18px;

}

.input-label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:var(--text);

}

.input{

    width:100%;

    height:60px;

    border:2px solid var(--border);

    border-radius:16px;

    padding:0 18px;

    font-size:16px;

    transition:.30s;

    outline:none;

}

.input:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(79,70,229,.12);

}

/* ===============================
    Login Button
================================*/

.login-btn{

    width:100%;

    border:none;

    margin-top:25px;

    border-radius:16px;

    padding:16px;

    color:#fff;

    font-size:17px;

    font-weight:700;

    background:linear-gradient(90deg,#4338CA,#6366F1);

    cursor:pointer;

    transition:.35s;

}

.login-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(67,56,202,.35);

}

/* ===============================
      Statistics
================================*/

.stats{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.stat{

    flex:1;

    padding:20px;

    text-align:center;

    border-radius:18px;

    background:rgba(255,255,255,.14);

    backdrop-filter:blur(10px);

}

.stat h2{

    color:#fff;

    font-size:28px;

}

.stat p{

    color:rgba(255,255,255,.82);

    font-size:13px;

}

/* ===============================
      Alerts
================================*/

.alert{

    border-radius:15px;

    padding:14px;

    margin-bottom:18px;

}

.alert-error{

    background:#FEE2E2;

    color:#991B1B;

}

.alert-success{

    background:#DCFCE7;

    color:#166534;

}

/* ===============================
      Responsive
================================*/

@media(max-width:992px){

    .brand-title{

        font-size:2.5rem;

    }

    .login-card{

        margin-top:40px;

    }

}

@media(max-width:768px){

    .login-card{

        padding:28px;

    }

    .stats{

        flex-direction:column;

    }

}