/* ==========================================================
   World AI Enterprise
   Login
========================================================== */

/*=========================
= Variables
=========================*/

:root{

    --primary:#0F172A;
    --secondary:#1E293B;
    --accent:#0EA5E9;
    --accent-hover:#0284C7;

    --success:#10B981;

    --background:#F8FAFC;

    --white:#FFFFFF;

    --border:#E2E8F0;

    --text:#0F172A;

    --text-light:#64748B;

    --shadow:0 20px 60px rgba(15,23,42,.10);

    --radius:18px;

}

/*=========================
= Base
=========================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:'Inter',sans-serif;

    background:linear-gradient(
        135deg,
        #F8FAFC 0%,
        #EEF4FB 100%
    );

    color:var(--text);

}
/*==========================================================
= Background Blobs
==========================================================*/

body::before,
body::after{

    content:"";

    position:fixed;

    border-radius:50%;

    filter:blur(120px);

    opacity:.35;

    z-index:-1;

}

body::before{

    width:420px;
    height:420px;

    background:#0EA5E9;

    top:-120px;
    left:-120px;

}

body::after{

    width:350px;
    height:350px;

    background:#6366F1;

    bottom:-100px;
    right:-100px;

}

/*=========================
= Página
=========================*/

.login-page{

    overflow:hidden;

}

/*=========================
= Hero
=========================*/

.hero-panel{

    background-color:#0F172A;

    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:40px 40px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:70px;

    color:#fff;

}


.logo{

    display:flex;

    align-items:center;

    gap:20px;

    color:white;

}

.logo-icon{

    width:72px;
    height:72px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    background:linear-gradient(
        135deg,
        #0EA5E9,
        #2563EB
    );

    color:white;

    box-shadow:0 10px 25px rgba(14,165,233,.40);

}

.logo h1{

    margin:0;

    font-size:2.5rem;

    font-weight:700;

    color:white;

    line-height:1.1;

}

.logo small{

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

}

.hero-content h2{

    font-size:2rem;

    font-weight:700;

    line-height:1.3;

}

.hero-content p{

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

    font-size:1rem;

    line-height:1.7;

}

.feature-list{

    list-style:none;

    padding:0;

    margin-top:50px;

}

.feature-list li{

    font-size:1rem;

    padding:8px 12px;

    margin-bottom:8px;


}

.feature-list i{

    color:#38BDF8;

    margin-right:10px;

}

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

.login-card{

    width:100%;

    max-width:560px;

    padding:40px;

    border-radius:22px;

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

    backdrop-filter:blur(12px);

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

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

    box-shadow:
        0 20px 60px rgba(15,23,42,.10),
        0 5px 20px rgba(15,23,42,.05);

}

.login-card h2{

    font-weight:700;

}

.login-card p{

    color:var(--text-light);

}

.login-card small{

    display:block;

    padding-top:25px;

    border-top:1px solid #EEF2F7;

}
/*=========================
= Labels
=========================*/

.form-label{

    font-weight:600;

}

/*=========================
= Inputs
=========================*/

.form-control{

    height:56px;

    border:none;

    background:#F8FAFC;

}

.input-group-text{

    border:none;

    background:#F8FAFC;

}

.input-group{

    border:1px solid #E2E8F0;

    border-radius:14px;

    overflow:hidden;

    transition:.3s;

}

.input-group:hover{

    border-color:#CBD5E1;

}

.input-group:focus-within{

    border-color:#0EA5E9;

    box-shadow:0 0 0 4px rgba(14,165,233,.15);

}

/*=========================
= Checkbox
=========================*/

.form-check-input:checked{

    background:var(--accent);

    border-color:var(--accent);

}

/*=========================
= Botón
=========================*/

.btn-primary{

    height:56px;

    border:none;

    border-radius:16px;

    font-weight:600;

    letter-spacing:.3px;

    background:linear-gradient(
        135deg,
        #0EA5E9,
        #2563EB
    );

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 30px rgba(14,165,233,.35);

}

/*=========================
= IA
=========================*/

h6{

    font-weight:700;

}

input:disabled{

    background:#F8FAFC;

}

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

small{

    color:var(--text-light);

}

/*==========================================================
= Animaciones
==========================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.login-card{

    animation:fadeUp .8s ease;

}

.hero-content{

    animation:fadeUp 1s ease;
    max-width:520px;
    width:100%;

}

.feature-list li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:10px;

    padding:10px 14px;

    border-radius:12px;

    transition:.25s;

}

.feature-list li:hover{

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

    transform:translateX(8px);

}

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

@media(max-width:992px){

    .login-card{

        margin:40px 20px;

        padding:40px;

    }

}

@media(max-width:576px){

    .login-card{

        padding:30px;

    }

}