/*=========================================================
GENIUNE.PK LOGIN PAGE
Part 1 - Layout
=========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --secondary:#0f172a;

    --text:#64748b;

    --white:#ffffff;

    --border:#e5e7eb;

}

html,
body{

    height:100%;

}

body{

    font-family:'Poppins',sans-serif;

    background:#f4f8fc;

    overflow-x:hidden;

    position:relative;

}

/*==============================
Background
==============================*/

.bg1{

    position:fixed;

    width:500px;

    height:500px;

    border-radius:50%;

    background:#dbeafe;

    left:-180px;

    top:-180px;

    filter:blur(70px);

    z-index:-2;

}

.bg2{

    position:fixed;

    width:450px;

    height:450px;

    border-radius:50%;

    background:#bfdbfe;

    right:-150px;

    bottom:-150px;

    filter:blur(70px);

    z-index:-2;

}

/*==============================
Left Side
==============================*/

.left-panel{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:70px;

}

.brand{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:60px;

}

.brand img{

    height:60px;

}

.brand span{

    font-size:32px;

    font-weight:700;

    color:var(--secondary);

}

/*==============================
Hero
==============================*/

.hero{

    max-width:650px;

}

.tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:#dbeafe;

    color:var(--primary);

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:56px;

    font-weight:700;

    color:var(--secondary);

    line-height:1.2;

    margin-bottom:20px;

}

.hero p{

    font-size:18px;

    line-height:1.9;

    color:var(--text);

}

/*==============================
Right Side
==============================*/

.login-card{

    width:100%;

    max-width:470px;

    background:#fff;

    border-radius:25px;

    padding:45px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

}

.login-card h3{

    font-weight:700;

    color:var(--secondary);

    margin-bottom:8px;

}

.login-card p{

    color:var(--text);

    margin-bottom:35px;

}

/*==============================
Responsive
==============================*/

@media(max-width:992px){

.left-panel{

padding:40px;

text-align:center;

}

.brand{

justify-content:center;

}

.hero{

margin:auto;

}

.login-card{

margin:50px auto;

}

.hero h1{

font-size:42px;

}

}

@media(max-width:576px){

.left-panel{

padding:25px;

}

.hero h1{

font-size:34px;

}

.login-card{

padding:30px;

}

}



/*=========================================================
PART 2
Hero Features
=========================================================*/

.features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:45px;

}

.feature{

    background:#fff;

    border-radius:18px;

    padding:20px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

    font-weight:600;

    color:#334155;

}

.feature:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(37,99,235,.18);

}

.feature i{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:#eff6ff;

    color:#2563eb;

    font-size:26px;

}

/*=========================================================
Statistics
=========================================================*/

.stats{

    display:flex;

    justify-content:space-between;

    margin-top:55px;

    gap:15px;

}

.stats div{

    text-align:center;

}

.stats h2{

    color:#2563eb;

    font-weight:700;

    margin-bottom:5px;

}

.stats span{

    color:#64748b;

    font-size:14px;

}

/*=========================================================
Form
=========================================================*/

.login-card form{

    margin-top:20px;

}

.login-card label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#0f172a;

}

.input-box{

    display:flex;

    align-items:center;

    background:#fff;

    border:1px solid #dbe3ef;

    border-radius:14px;

    height:58px;

    padding:0 18px;

    transition:.3s;

}

.input-box:hover{

    border-color:#2563eb;

}

.input-box:focus-within{

    border-color:#2563eb;

    box-shadow:0 0 0 4px rgba(37,99,235,.10);

}

.input-box i{

    color:#2563eb;

    font-size:18px;

}

.input-box input{

    flex:1;

    border:none;

    outline:none;

    padding:0 15px;

    font-size:15px;

    font-family:'Poppins',sans-serif;

}

.eye{

    cursor:pointer;

}

/*=========================================================
Remember & Forgot
=========================================================*/

.options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:25px 0;

    font-size:14px;

}

.options a{

    text-decoration:none;

    color:#2563eb;

    font-weight:600;

}

.options a:hover{

    color:#1d4ed8;

}

/*=========================================================
Login Button
=========================================================*/

.login-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:15px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:#fff;

    font-size:17px;

    font-weight:600;

    transition:.35s;

    cursor:pointer;

}

.login-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(37,99,235,.35);

}

/*=========================================================
Divider
=========================================================*/

.divider{

    display:flex;

    align-items:center;

    justify-content:center;

    margin:28px 0;

    color:#94a3b8;

    font-size:14px;

    position:relative;

}

.divider::before{

    content:"";

    position:absolute;

    left:0;

    width:42%;

    height:1px;

    background:#e5e7eb;

}

.divider::after{

    content:"";

    position:absolute;

    right:0;

    width:42%;

    height:1px;

    background:#e5e7eb;

}

/*=========================================================
Register Button
=========================================================*/

.register{

    display:block;

    text-align:center;

    padding:14px;

    border:2px solid #2563eb;

    border-radius:14px;

    color:#2563eb;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.register:hover{

    background:#2563eb;

    color:#fff;

}

/*=========================================================
Responsive
=========================================================*/

@media(max-width:992px){

.features{

    grid-template-columns:1fr;

}

.stats{

    flex-wrap:wrap;

    justify-content:center;

}

}

@media(max-width:576px){

.options{

    flex-direction:column;

    gap:12px;

}

}


/*=========================================================
PART 3
Premium UI
=========================================================*/

/*-----------------------------
Glass Login Card
------------------------------*/

.login-card{

    position:relative;

    overflow:hidden;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.88);

    border:1px solid rgba(255,255,255,.65);

}

/* Top Light */

.login-card::before{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:rgba(37,99,235,.08);

    border-radius:50%;

    top:-120px;
    right:-120px;

    filter:blur(25px);

}

/* Bottom Light */

.login-card::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(59,130,246,.08);

    border-radius:50%;

    left:-80px;
    bottom:-80px;

    filter:blur(20px);

}

/*-----------------------------------
Animated Background
-----------------------------------*/

.bg1{

    animation:moveOne 14s infinite ease-in-out;

}

.bg2{

    animation:moveTwo 18s infinite ease-in-out;

}

@keyframes moveOne{

0%{

transform:translate(0,0);

}

50%{

transform:translate(60px,40px);

}

100%{

transform:translate(0,0);

}

}

@keyframes moveTwo{

0%{

transform:translate(0,0);

}

50%{

transform:translate(-60px,-35px);

}

100%{

transform:translate(0,0);

}

}

/*-----------------------------------
Hero Animation
-----------------------------------*/

.hero{

    animation:fadeLeft 1s ease;

}

.login-card{

    animation:fadeRight 1s ease;

}

@keyframes fadeLeft{

from{

opacity:0;

transform:translateX(-60px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes fadeRight{

from{

opacity:0;

transform:translateX(60px);

}

to{

opacity:1;

transform:translateX(0);

}

}

/*-----------------------------------
Hover Effects
-----------------------------------*/

.brand img{

    transition:.4s;

}

.brand img:hover{

    transform:rotate(-6deg) scale(1.08);

}

.tag{

    transition:.35s;

}

.tag:hover{

    background:#2563eb;

    color:#fff;

}

.stats div{

    transition:.35s;

}

.stats div:hover{

    transform:translateY(-8px);

}

.stats h2{

    transition:.35s;

}

.stats div:hover h2{

    color:#1d4ed8;

}

/*-----------------------------------
Inputs
-----------------------------------*/

.input-box{

    transition:.35s;

}

.input-box:hover{

    transform:translateY(-2px);

}

/*-----------------------------------
Buttons
-----------------------------------*/

.login-btn{

    position:relative;

    overflow:hidden;

}

.login-btn::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-25deg);

    transition:.8s;

}

.login-btn:hover::before{

    left:130%;

}

.register{

    transition:.35s;

}

/*-----------------------------------
Scrollbar
-----------------------------------*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#2563eb;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#eef5ff;

}