*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Poppins',sans-serif;
    background:#f4f8fb;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:30px;
}
.login-container{
    width:100%;
    max-width:1180px;
}
.login-card{
    position: relative;
    background:#fff;
    display:flex;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}
/*=======   IZQUIERDA  =========*/
.login-left{
    width:45%;
    padding:70px 60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    border-right:1px solid #edf2f7;
    background:#fff;
}
.company-logo{
    width:180px;
    height:180px;
    margin-bottom:25px;
}
.company-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
.panel-badge{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    width:fit-content;
    margin:0 auto 20px;
    background:#EAF7FD;
    color:#1592C8;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    text-transform:uppercase;
}
.panel-badge i{
    font-size:14px;
}
.login-left h1{
    font-size:42px;
    color:#16325c;
    font-weight:700;
    margin-bottom:20px;
}
.login-left p{
    color:#6c757d;
    line-height:1.8;
    font-size:15px;
    max-width:360px;
}
/*=======   DERECHA   =======*/
.login-right{
    width:55%;
    padding:70px 70px;
    display:flex;
    align-items:center;
}
.login-right form{
    width:100%;
}
.form-group{
    margin-bottom:25px;
}
.form-group label{
    display:block;
    font-weight:600;
    color:#34495e;
    margin-bottom:10px;
}
/*=======   INPUTS   =======*/
.input-box{
    height:58px;
    display:flex;
    align-items:center;
    border:2px solid #dfe7ef;
    border-radius:14px;
    padding:0 18px;
    transition:.35s;
    background:#fff;
}
.input-box:hover{
    border-color:#1592C8;
}
.input-box:focus-within{
    border-color:#1592C8;
    box-shadow:0 0 0 4px rgba(21,146,200,.15);
}
.input-box i{
    color:#1592C8;
    font-size:18px;
    margin-right:14px;
}
.input-box input{
    width:100%;
    border:none;
    outline:none;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    background:transparent;
}
/*=======   RECUPERAR   =======*/
.forgot-password{
    text-align:right;
    margin-bottom:28px;
}
.forgot-password a{
    color:#1592C8;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}
.forgot-password a:hover{
    color:#0f6d96;
}
/*=======   BOTON LOGIN   =======*/
.btn-login{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#4DAFDA,#1592C8);
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
}
.btn-login:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(21,146,200,.30);
}
/*=======   SEPARADOR   =======*/
.separator{
    text-align:center;
    margin:30px 0;
    position:relative;
}
.separator::before{
    content:"";
    position:absolute;
    width:100%;
    height:1px;
    background:#e5e7eb;
    left:0;
    top:50%;
}
.separator span{
    position:relative;
    background:#fff;
    padding:0 20px;
    color:#888;
}
/*=======   LOGIN   =======*/
.btn-login{
    width:100%;
    height:55px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#4DAFDA,#1592C8);
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:.35s;
    cursor:pointer;
}
.btn-login:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(21,146,200,.35);
}
/*=======   SEPARADOR   =======*/
.separator{
    position:relative;
    text-align:center;
    margin:28px 0;
}
.separator::before{
    content:"";
    position:absolute;
    width:100%;
    height:1px;
    background:#ddd;
    top:50%;
    left:0;
}
.separator span{
    background:#fff;
    position:relative;
    padding:0 18px;
    color:#777;
}
/*=======   GOOGLE   =======*/
.btn-google{
    width:100%;
    height:55px;
    border:2px solid #dadce0;
    background:#fff;
    border-radius:14px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
}
.btn-google img{
    width:22px;
}
.btn-google:hover{
    border-color:#1592C8;
    background:#f7fbff;
    transform:translateY(-2px);
}
/*=======   REGISTRO   =======*/
.register{
    margin-top:30px;
    text-align:center;
    color:#666;
    font-size:15px;
}
.register a{
    color:#1592C8;
    text-decoration:none;
    font-weight:600;
}
.register a:hover{
    text-decoration:underline;
}
/*=======   ANIMACION  =======*/
.login-card{
    animation:fadeLogin .8s ease;
}
@keyframes fadeLogin{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/*=========================
    BOTON VOLVER
=========================*/

.back-home{
    position:absolute;
    top:30px;
    left:30px;

    width:55px;
    height:55px;

    display:flex;
    align-items:center;

    background:#E9F7FD;
    color:#1592C8;

    border-radius:50px;
    border:1px solid #D8EEF8;

    text-decoration:none;
    overflow:hidden;

    transition:all .35s ease;
}

.back-home i{
    min-width:55px;
    text-align:center;
    font-size:18px;
}

.back-home span{
    white-space:nowrap;
    opacity:0;
    transform:translateX(-15px);
    transition:.35s;
    font-size:14px;
    font-weight:600;
}

/* Hover */

.back-home:hover{
    width:210px;
    background:#E9F7FD;
    color:#1592C8;
    border-color:#B9E4F5;
}

.back-home:hover span{
    opacity:1;
    transform:translateX(0);
}

/* Hover */

.back-home:hover{

    background:#F5FBFE;
border:1px solid rgba(21,146,200,.15);
box-shadow:none;

}

.back-home:hover span{

    opacity:1;

    transform:translateX(0);

}