/* ===========================================
   LAYOUT GENERAL
=========================================== */

*{
    box-sizing:border-box;
}

body{

    margin:0;

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

    background:
        linear-gradient(
            135deg,
            #eef5ff 0%,
            #f8fbff 100%
        );

    min-height:100vh;

}

.page{

    min-height:100vh;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    padding:40px 20px;

}

.header{

    margin-bottom:35px;

    animation:fadeUp .6s;

}

.logo-fc{

    width:220px;

    max-width:80vw;

}

.contenido{

    width:100%;

    max-width:650px;

}

.footer{

    width:100%;

    max-width:650px;

    margin-top:35px;

    text-align:center;

    color:#6b7280;

    font-size:14px;

}

.footer-line{

    height:1px;

    background:#d9e2ec;

    margin-bottom:25px;

}

.footer-title{

    font-weight:700;

    color:#14345d;

    margin-bottom:8px;

}

.footer-text{

    color:#7c8797;

}
