/* =====================================
   VayaGo Admin Panel
   Premium Login UI
   Part 1
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html,
body{
    width:100%;
    height:100%;
}

body{

    background:#0b1120;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;
}


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

.background{

    position:fixed;

    inset:0;

    background:
    radial-gradient(circle at top left,#2563eb 0%,transparent 35%),
    radial-gradient(circle at bottom right,#7c3aed 0%,transparent 35%),
    linear-gradient(135deg,#0b1120,#111827,#0f172a);

}


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

.circle{

    position:absolute;

    border-radius:50%;

    filter:blur(70px);

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

    opacity:.55;

}

.c1{

    width:260px;

    height:260px;

    background:#3b82f6;

    left:-70px;

    top:-70px;

}

.c2{

    width:300px;

    height:300px;

    background:#8b5cf6;

    right:-100px;

    bottom:-100px;

    animation-delay:3s;

}

.c3{

    width:200px;

    height:200px;

    background:#06b6d4;

    left:45%;

    bottom:-80px;

    animation-delay:6s;

}


/*==============================
Login Container
===============================*/

.login-container{

    position:relative;

    width:100%;

    padding:25px;

    display:flex;

    justify-content:center;

    align-items:center;

}


/*==============================
Glass Card
===============================*/

.login-card{

    width:430px;

    max-width:100%;

    padding:45px 35px;

    border-radius:28px;

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

    backdrop-filter:blur(25px);

    -webkit-backdrop-filter:blur(25px);

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

    box-shadow:

    0 20px 60px rgba(0,0,0,.45),

    inset 0 1px 0 rgba(255,255,255,.08);

}


/*==============================
Logo
===============================*/

.logo-box{

    text-align:center;

    margin-bottom:35px;

}

.logo-box img{

    width:95px;

    height:95px;

    object-fit:contain;

    margin-bottom:15px;

}

.logo-box h2{

    color:#ffffff;

    font-size:32px;

    font-weight:700;

    letter-spacing:.8px;

}

.logo-box p{

    color:#cbd5e1;

    font-size:14px;

    margin-top:8px;

}
/*==================================
  Input Fields
==================================*/

.input-group{

    position:relative;

    margin-bottom:22px;

}

.input-group i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#94a3b8;

    font-size:20px;

    transition:.3s;

}

.input-group input{

    width:100%;

    height:58px;

    border:none;

    outline:none;

    border-radius:16px;

    padding:0 55px;

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

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

    color:#ffffff;

    font-size:15px;

    transition:.35s;

}

.input-group input::placeholder{

    color:#94a3b8;

}

.input-group input:focus{

    border:1px solid #3b82f6;

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

    box-shadow:0 0 25px rgba(59,130,246,.25);

}

.input-group input:focus+i{

    color:#60a5fa;

}


/*==================================
Password Toggle
==================================*/

.password-box{

    position:relative;

}

#togglePassword{

    position:absolute;

    right:18px;

    top:50%;

    transform:translateY(-50%);

    color:#94a3b8;

    cursor:pointer;

    font-size:20px;

    transition:.3s;

}

#togglePassword:hover{

    color:#ffffff;

}


/*==================================
Remember & Forgot
==================================*/

.options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:10px 0 28px;

    font-size:14px;

}

.options label{

    display:flex;

    align-items:center;

    gap:8px;

    color:#cbd5e1;

    cursor:pointer;

}

.options input{

    accent-color:#3b82f6;

}

.options a{

    color:#60a5fa;

    text-decoration:none;

    transition:.3s;

}

.options a:hover{

    color:#93c5fd;

}


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

.login-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:16px;

    background:linear-gradient(135deg,#2563eb,#7c3aed);

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    box-shadow:0 12px 35px rgba(59,130,246,.30);

}

.login-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 45px rgba(59,130,246,.45);

}

.login-btn:active{

    transform:scale(.98);

}


/*==================================
Footer
==================================*/

.footer{

    margin-top:30px;

    text-align:center;

}

.footer p{

    color:#94a3b8;

    font-size:13px;

}
/*==================================
Animations
==================================*/

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-25px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes glow{

    0%{
        box-shadow:0 0 20px rgba(59,130,246,.20);
    }

    50%{
        box-shadow:0 0 40px rgba(124,58,237,.35);
    }

    100%{
        box-shadow:0 0 20px rgba(59,130,246,.20);
    }

}

.login-card{

    animation:fadeIn .8s ease;

}

.login-btn{

    animation:glow 3s infinite;

}

/*==================================
Scrollbar
==================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#0f172a;

}

::-webkit-scrollbar-thumb{

    background:#3b82f6;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#2563eb;

}

/*==================================
Selection
==================================*/

::selection{

    background:#3b82f6;

    color:#ffffff;

}

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

@media(max-width:768px){

.login-card{

    width:100%;

    padding:35px 25px;

    border-radius:22px;

}

.logo-box img{

    width:80px;

    height:80px;

}

.logo-box h2{

    font-size:28px;

}

.logo-box p{

    font-size:13px;

}

.input-group input{

    height:54px;

}

.login-btn{

    height:54px;

}

}

@media(max-width:480px){

body{

    padding:18px;

}

.login-container{

    padding:0;

}

.login-card{

    width:100%;

    padding:28px 20px;

    border-radius:20px;

}

.logo-box{

    margin-bottom:25px;

}

.logo-box img{

    width:70px;

    height:70px;

}

.logo-box h2{

    font-size:24px;

}

.logo-box p{

    font-size:12px;

}

.options{

    flex-direction:column;

    align-items:flex-start;

    gap:12px;

}

.login-btn{

    font-size:16px;

}

}

/*==================================
End
==================================*/

