/* ==========================================
   LOGNEXUS LOGIN
   PART 2
========================================== */

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

body{

    font-family:Arial,Helvetica,sans-serif;

    background:#020617;

    overflow-x:hidden;

    color:#fff;

}

.login-page{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 520px;

    background:
    radial-gradient(circle at top left,#164e63 0%,transparent 45%),
    radial-gradient(circle at bottom right,#0f766e 0%,transparent 35%),
    #020617;

}

/* ==========================
LEFT
========================== */

.login-left{

    padding:70px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.login-brand h1{

    font-size:52px;

    margin-bottom:10px;

}

.login-brand span{

    color:#22d3ee;

}

.login-brand p{

    color:#94a3b8;

    font-size:18px;

}

.login-content{

    margin-top:70px;

}

.login-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:rgba(34,211,238,.12);

    color:#67e8f9;

    margin-bottom:30px;

    border:1px solid rgba(34,211,238,.2);

}

.login-content h2{

    font-size:52px;

    line-height:1.15;

    margin-bottom:25px;

}

.login-content p{

    font-size:19px;

    color:#cbd5e1;

    line-height:1.8;

    max-width:650px;

}

.login-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:45px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    background:#0f172a;

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

    padding:18px 22px;

    border-radius:14px;

}

.feature i{

    color:#22d3ee;

    font-size:22px;

}

/* ==========================
RIGHT
========================== */

.login-right{

    display:flex;

    justify-content:center;

    align-items:center;

    padding:40px;

}

.login-card{

    width:100%;

    background:rgba(15,23,42,.88);

    backdrop-filter:blur(18px);

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

    border-radius:28px;

    padding:45px;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.login-card h2{

    font-size:36px;

    margin-bottom:10px;

}

.login-card>p{

    color:#94a3b8;

    margin-bottom:35px;

}

/* ==========================
INPUTS
========================== */

.input-group{

    position:relative;

    margin-bottom:22px;

}

.input-group i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#22d3ee;

    font-size:18px;

}

.input-group input{

    width:100%;

    height:58px;

    padding-left:55px;

    padding-right:55px;

    border-radius:14px;

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

    background:#081225;

    color:#fff;

    font-size:16px;

}

.input-group input:focus{

    outline:none;

    border-color:#22d3ee;

    box-shadow:0 0 0 4px rgba(34,211,238,.15);

}

.eye-btn{

    position:absolute;

    top:50%;

    right:18px;

    transform:translateY(-50%);

    width:40px;

    height:40px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:transparent;

    border:none;

    cursor:pointer;

    color:#94a3b8;

    font-size:18px;

    transition:.25s;

}

.eye-btn:hover{

    color:#22d3ee;

}

/* ==========================
OPTIONS
========================== */

.login-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:20px 0 30px;

    font-size:15px;

}

.login-options label{

    display:flex;

    align-items:center;

    gap:8px;

    color:#cbd5e1;

}

.login-options a{

    color:#22d3ee;

}

/* ==========================
BUTTON
========================== */

.login-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:14px;

    background:#22d3ee;

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.login-btn:hover{

    background:#0891b2;

    transform:translateY(-2px);

    box-shadow:0 12px 30px rgba(34,211,238,.25);

}

/* ==========================
FOOTER
========================== */

.login-footer{

    margin-top:30px;

    text-align:center;

}

.login-footer p{

    color:#94a3b8;

    margin-bottom:15px;

}

.login-footer a{

    color:#22d3ee;

    text-decoration:none;

}

.back-home{

    display:inline-block;

    margin-top:10px;

}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:1100px){

.login-page{

grid-template-columns:1fr;

}

.login-left{

display:none;

}

.login-right{

padding:25px;

}

}

@media(max-width:600px){

.login-card{

padding:30px 22px;

border-radius:22px;

}

.login-card h2{

font-size:30px;

}

.login-options{

flex-direction:column;

align-items:flex-start;

gap:15px;

}

}