.body {
    width: 100%!important;
    height: 100vh!important;
}

.login-content {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    width: fit-content;
    overflow: hidden;
    border-radius: var(--rounded-edge);    
    box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.2);
}

.login-container > * {
    height: 22rem;
    width: 12rem;
    padding: 5rem;
}

.cartel {
    background-color: white;
}
.cartel img {
    width: 15rem;
}

.cartel span {
    font-size: 2em;
    font-weight: 600;
    color: #7c7d81;
    pointer-events: none;
    margin-left: 1.5rem;
}

.ingreso {
    background-color: var(--unraf-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    color: white;
}
.ingreso .title {
    color: white;
    font-size: xx-large;
}

.boton img {
    width: 16px;
    background-color: white;
    padding: 4px;
    border-radius: 12px;
    position: absolute;
    transform: translateX(-4.5rem);
    transition: opacity 150ms ease-in-out;
}

.boton svg {
    fill: var(--unraf-yellow);
    opacity: 0;
    transition: opacity 150ms ease-in-out;
    position: absolute;
    transform: translate(-4.5rem,-.05rem);
}

.boton:hover img {
    opacity: 0;
}

.boton:hover svg {
    opacity: 1;
}

.boton.amarillo.login:hover {
    background-color: var(--unraf-blue);
}

.ayuda{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: center;
    height: 2rem;
    gap: .2rem;
}

.ayuda a, .ayuda svg {
    color: white;
    fill: white;
}

.ayuda a:hover {
    color: var(--unraf-cyan);
}
.ayuda a:hover + svg {
    fill: var(--unraf-cyan);
}

@media(max-width: 750px){
    html,body {
        overflow: hidden;
    }
    .login-container{
        flex-direction: column-reverse ;
        margin: 0;
        height: 100vh;
        width: 100%;
    }

    .login-container > * {
        box-sizing: border-box;
        width: 100%;
        overflow: hidden;
        height: 50%;
        flex: 0 1 auto;
        display: flex;
        flex-direction: column;
        align-items: baseline;
        justify-content: stretch;
        margin: 0;
    }

    .cartel img {
        width: 12rem;
        margin-top: -2rem;
    }

    .cartel {
        box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.2);
        flex: 1;
    }

    .ingreso {
        flex: 2;
    }

    .boton {
        width: 11rem;
    }
}