*{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --bg-red:#a11c31;
    --bg-blue: #253b7e;
}
.login{
    background: url(../imagenes/login/background.jpg);
    background-size: cover;
    position: relative;
    height: 100vh;
}
.login::after{
    background: #ffffffaa;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.navLogin{
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.SecContext{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.SecForm{
    z-index: 2;
    display: flex;
    flex-direction: column;
    background: #ffffffd4;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0px 0px 0px 3px #7c7c7c;
}

.SecImg{
    width: 250px;
}

.Formulario{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footerlogin{
    z-index: 2;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    background: var(--bg-blue);
    color: white;
}