/* ==========================
   LIMLA AI - Global Styles
========================== */

:root{
    --primary:#6C63FF;
    --secondary:#33D6FF;
    --bg:#0F172A;
    --card:rgba(255,255,255,.08);
    --border:rgba(255,255,255,.12);
    --text:#FFFFFF;
    --text2:#A5B4C3;
}

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

body{
    font-family:Inter,Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
}
/* ==========================
   Google Login Button
========================== */

.social-login{
    margin-bottom:20px;
}

.google-btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:14px;

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

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

    color:white;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    transition:.25s;
}

.google-btn:hover{

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

    transform:translateY(-2px);

}

.google-btn img{

    width:22px;

    height:22px;

}

.divider{

    display:flex;

    align-items:center;

    justify-content:center;

    margin:20px 0;

    color:#999;

    font-size:13px;

}
.login-options{

    display:flex;

    justify-content:space-between;

    align-items:center;
    gap: 20px;
    margin-top:-5px;

    margin-bottom:20px;

    font-size:14px;

}

.remember-me{
    display:flex;
    align-items:center;
    gap:8px;
    color:#ccc;
    white-space: nowrap;
}
.remember-me input{
    width:16px;
    height:16px;
    margin:0;
    flex-shrink:0;
}
.remember-me span{
    white-space:nowrap;
}

.forgot-password{

    color:#33D6FF;

    text-decoration:none;

}

.forgot-password:hover{

    text-decoration:underline;

}
/* Password Field */

.password-wrapper{

    position:relative;

    width:100%;

    margin-bottom:15px;

}

.password-wrapper input{

    width:100%;

    padding:12px 45px 12px 12px;
    margin: 0;

}

.toggle-password{
    position:absolute;
    right:15px;
    top:12px;
    cursor:pointer;
    color:#999;
    font-size:18px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
}
.toggle-password:hover{

    color:white;

}
.toggle-password i{
    pointer-events:none;
}