/* FONDO GENERAL DE TODA LA PÁGINA */

body{
    background: linear-gradient(135deg,#206bc4,#1a4f9c);
    min-height:100vh;
}


/* PANEL DERECHO */

.login-side{
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}


/* DECORACIÓN SUAVE */

.login-side::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    top:-60px;
    right:-60px;
}

.login-side::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
    bottom:-40px;
    left:-40px;
}


/* CONTENIDO DEL PANEL DERECHO */

.login-side .content{
    position:relative;
    z-index:2;
    max-width:380px;
}


/* TEXTO */

.login-side h2{
    color:white;
    font-weight:600;
}

.login-side p{
    color:rgba(255,255,255,0.8);
    font-size:15px;
}