/* ==========================================
   LOGIN SIGEB
   ========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
}

body{

    background:#f4f7fb;
    overflow:hidden;

}

.login-container{

    display:flex;
    width:100%;
    height:100vh;

}

/*==================================
LADO IZQUIERDO
==================================*/

.login-left{

    flex:1;
    background:linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a,
        #2563eb
    );

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

}

.overlay{

    width:100%;
    height:100%;

    background:rgba(0,0,0,.25);

    display:flex;
    justify-content:center;
    align-items:center;

}

.brand{

    text-align:center;
    color:white;
    padding:40px;

}

.brand h1{

    font-size:70px;
    font-weight:800;
    letter-spacing:3px;

    margin-bottom:15px;

}

.brand p{

    font-size:22px;
    opacity:.9;

}

/*==================================
LADO DERECHO
==================================*/

.login-right{

    width:480px;

    background:#ffffff;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px;

}

.login-card{

    width:100%;
    max-width:400px;

    animation:fadeIn .7s;

}

.login-card h2{

    font-weight:700;

}

/*==================================
INPUTS
==================================*/

.form-control{

    height:50px;

    border-radius:12px;

}

.input-group-text{

    border-radius:12px 0 0 12px;

    background:#2563eb;
    color:white;
    border:none;

}

.btn-outline-secondary{

    border-radius:0 12px 12px 0;

}

/*==================================
BOTON
==================================*/

.btn-primary{

    border-radius:12px;

    height:50px;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(37,99,235,.35);

}

/*==================================
ANIMACION
==================================*/

@keyframes fadeIn{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:992px){

.login-left{

    display:none;

}

.login-right{

    width:100%;

}

body{

    background:linear-gradient(
        135deg,
        #0f172a,
        #2563eb
    );

}

.login-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.20);

}

}