@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;600;700&display=swap');

:root {
    --color-primary: gray;
    --color--title: #155690;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    height: 0;
}

body {
    font-family: Nexa;   
}

.main {
    background-image: linear-gradient( rgba(255,250,250,0.8), rgba(255,250,250,0.4)),url(/recursosPlantilla/SvgLogin/qbkls.png);
    background-repeat: repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

.contenedor {
    width: 90%;
    margin: 0 auto;
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login__clip-path {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 61%;
    height: 92%;
    clip-path: polygon(0 0, 0 100%, 67% 0);
    background-image: linear-gradient(to top, #1e3c72 0%, #1e3c72 1%, #2a5298 100%);
}

.card__login {
    position: relative;
    top: 50px;
    z-index:3;
    margin-top: 73.8px;
    min-width: 320px;
    max-width: 500px;
    padding: 30px;
    width: 40%;
    max-height: 500px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.459);
    transition: .5s all;
    transform: translateY(0);
    animation: 1s login ease;
}

@keyframes login{
    0% {
        transform: translateY(-200%)
    }

    100% {
        transform: translateY(0)
    }
}

.card__img {
    display: block;
    width: 80%;
    margin: 0 auto;
}

.card__picture {
    width: 100%;
}

.card__form {
    padding-top: 10px;
    font-family: 'Poppins', sans-serif;
    height: 100%;
}

.card__Subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 17px 0 2px 0;
    color: var(--color--title);
}

.card__input {
    width: 100%;
    height: 40px;
    border: 1px solid silver;
    border-radius: 8px;
    outline: none;
    padding: 8px;
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 400;
}

.card__input:focus {
    box-shadow: 1px 1px 5px #155690;
}
   

.card__cta--Login {
    display: inline-block;
    margin-top: 10px;
    background: #34b464;
    padding: 10px 30px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border: none;
    transition: all .8s;
}

.card__cta--Volver {
    display: inline-block;
    margin-top: 10px;
    background: #c92027;
    padding: 10px 30px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    border: none;
    transition: all .6s;
}

.card__cta--Login:hover {
    color: #34b464;
    background: #fff;
    box-shadow: 2px 2px 5px 3px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.card__cta--Volver:hover {
    background: #fff;
    color: #c92027;
    box-shadow: 2px 2px 5px 3px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.footer__copy {
    font-size: 0.9rem;
    font-weight: bold;
    position: relative;
}

.footer__containerSvg {
    display: flex;
    justify-content: space-between;
}

.footer__svg {
    width: 30%;
    height: 200px;
}

.engi{
    top: 50%;
}

.footer__paragraph {
    background-image: linear-gradient(to top, #09203f 0%, #537895 100%);
    width: 100%;
    height: 8.1vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(222, 222, 222, 0.8);
}

.footer__copy p {
    font-family: 'Arimo', sans-serif;
    color: #fff;
    filter: drop-shadow(2px 2px 4px rgba(200,200,200,0.9));
}

.show {
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    color: DarkRed;
}



@media  (width < 500px) {
    body {
        height: 100vh;
    }

    .login {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }


    .card__login {
        position: relative;
        z-index: 3;
        top: 0;
        min-width: 280px;
        padding: 20px;
        width: 40%;
        min-height: 350px;
        height: auto;
        background: #fff;
        border-radius: 8px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.459);
    }

    .card__img {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    .card__picture {
        width: 100%;
    }

    .card__form {
        padding-top: 10px;
        font-family: 'Poppins', sans-serif;
        height: 100%;
    }

    .card__Subtitle {
        display: block;
        font-size: 1.2rem;
        font-weight: bold;
        margin: 17px 0 2px 0;
        color: var(--color--title);
    }

    .card__input {
        width: 100%;
        height: 40px;
        border: 1px solid silver;
        border-radius: 8px;
        outline: none;
        padding: 8px;
        font-size: 0.9rem;
        color: var(--color-primary);
        font-weight: 400;
    }

        .card__input:focus {
            box-shadow: 1px 1px 5px #155690;
        }

    .card__cta--Login {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
        height: 35px;
        margin-top: 20px;
        background: #34b464;
        border-radius: 3px;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        outline: none;
        border: none;
        transition: all .8s;
        font-size: 1rem;
        font-weight: 600;
    }

    .card__cta--Volver {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 35px;
        margin-top: 3px;
        background: #c92027;
        border-radius: 3px;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        outline: none;
        border: none;
        transition: all .8s;
        font-size: 1rem;
        font-weight: 600;
    }

    .card__cta--Login:hover {
        color: #34b464;
        background: #fff;
        box-shadow: 2px 2px 5px 3px rgba(0,0,0,0.5);
        transform: translateY(-2px);
    }

    .card__cta--Volver:hover {
        background: #fff;
        color: #c92027;
        box-shadow: 2px 2px 5px 3px rgba(0,0,0,0.5);
        transform: translateY(-2px);
    }


    .footer__copy {
        color: teal;
        font-size: 12px;
        font-weight: bold;
        position: relative;
        bottom: 0;
        background-color: #fff;
        border-top: 1px solid rgba(222, 222, 222, 0.8);
        margin-top: 30px;
    }

    .footer__containerSvg {
        display: none;
    }

    .footer__svg {
        width: 30%;
        height: 200px;
    }

    .footer__paragraph {
        padding: 5px;
        background-image: linear-gradient(to top, #09203f 0%, #537895 100%);
        width: 100%;
        height: 12vh;
        border-top: 1px solid rgb(255,255,255);
    }

    .footer__copy p {
        font-family: 'Arimo', sans-serif;
        text-align: center;
        color: #fff;
        filter: drop-shadow(2px 2px 4px rgba(200,200,200,0.9));
    }
}



@media (width > 2300px) {

    .card__login {
        position: relative;
        top: 10px;
        z-index: 3;
        margin-top: 5%;
        min-width: 320px;
        max-width: 700px;
        padding: 30px;
        width: 100%;
        height: 100%;
    }


    .card__img {
        display: block;
        width: 70%;
        margin: 0 auto;
    }

    .card__picture {
        width: 100%;
    }

    .card__form {
        padding-top: 10%;
        font-family: 'Poppins', sans-serif;
        height: 100%;
    }

    .card__Subtitle {
        display: block;
        font-size: 1.2rem;
        font-weight: bold;
        margin: 17px 0 2px 0;
        color: var(--color--title);
    }

    .card__input {
        width: 100%;
        height: 40px;
        border: 1px solid silver;
        border-radius: 8px;
        outline: none;
        padding: 8px;
        font-size: 1.2rem;
        color: var(--color-primary);
        font-weight: 400;
    }

        .card__input:focus {
            box-shadow: 1px 1px 5px #155690;
        }

    .card__cta--Login {
        display: inline-block;
        margin-top: 10px;
        background: #34b464;
        padding: 10px 30px;
        border-radius: 5px;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        outline: none;
        border: none;
        transition: all .8s;
    }

    .card__cta--Volver {
        display: inline-block;
        margin-top: 10px;
        background: #c92027;
        padding: 10px 30px;
        border-radius: 5px;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        outline: none;
        border: none;
        transition: all .6s;
    }

    .card__cta--Login:hover {
        color: #34b464;
        background: #fff;
        box-shadow: 2px 2px 5px 3px rgba(0,0,0,0.5);
        transform: translateY(-2px);
    }

    .card__cta--Volver:hover {
        background: #fff;
        color: #c92027;
        box-shadow: 2px 2px 5px 3px rgba(0,0,0,0.5);
        transform: translateY(-2px);
    }

    .footer__copy {
        font-size: 0.9rem;
        font-weight: bold;
        position: relative;
    }

    .footer__svg {
        width: 30%;
        height: 350px;
    }


    .footer__copy {
        font-size: 0.9rem;
        font-weight: bold;
        position: relative;
    }

    .footer__containerSvg {
        margin-top: -10%;
        position: relative;
        display: flex;
        justify-content: space-between;
    }

    .footer__paragraph {
        padding: 5px;
        background-image: linear-gradient(to top, #09203f 0%, #537895 100%);
        width: 100%;
        height: 12vh;
        border-top: 1px solid rgb(255,255,255);
    }

    .footer__copy p {
        padding-top: 5px;
        font-size: 1.9rem;
    
    }
}
