*{
    margin: 0;
    padding: 0;
    font-family:"Calibri", sans-serif;
}

.divBody{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
}

.divCarousel{
    display: flex;
    justify-content: center;
    position: relative;
}

.carousel{
    width: 100%;
    overflow: hidden;
}

.carouselContenido{
    width: 300%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    transition: all .5s ease;
    transform: translateX(0%);
    /*transform: translateX(0%);*/
}

.img{
    height: 100vh;
    width: calc( 100% / 3 );
    background-color: greenyellow;
}

.divContenido{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1000;
}

.divCarta{
    margin-top: 5%;
    margin-left: 5%;
    width: 350px;
    background-color: #e9ecef;
    border-radius: 3px;
    padding: 40px;
}

.inputUsuario{
    box-sizing: border-box;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    padding: 10px;
    outline: none;
    border-width: 1px;
    border-radius: 5px 5px 0px 0px;
}

.inputContrasenia{
    box-sizing: border-box;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    padding: 10px;
    outline: none;
    border-width: 1px;
    border-radius: 0px 0px 5px 5px;
}

.ingresar{
    margin: 30px 0px;
    font-size: 16px;
    background-color: #007D41;
    color: #ffffff;
    border: none;
    font-weight: 600;
    width: 100%;
    padding: 13px;
    border-radius: 5px;
    box-shadow: 3px 3px 0px rgb(90, 89, 88);
}

.ingresar:active {
    background-color: #007D4180;
}

.link{
    text-align: center;
}

.linkContrasenia{
    font-weight: 600;
    font-size: 20px;
    color: rgb(0, 125, 65);
}


@media (max-width:700px){
    .divContenido{
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .divCarta{
        margin-top: 0%;
        margin-left: 0%;
        width: 350px;
        background-color: #FFFFFF99;
        border-radius: 3px;
        padding: 40px;
    }
}

@media (max-width:400px){
    .divCarta{
        width: 350px;
        background-color: #FFFFFF99;
        border-radius: 3px;
        padding: 20px;
    }

    .inputUsuario{
        box-sizing: border-box;
        width: 100%;
        font-weight: 600;
        font-size: 13px;
        color: #000000;
        padding: 8px;
        outline: none;
        border-width: 1px;
        border-radius: 5px 5px 0px 0px;
    }
    
    .inputContrasenia{
        box-sizing: border-box;
        width: 100%;
        font-weight: 600;
        font-size: 13px;
        color: #000000;
        padding: 8px;
        outline: none;
        border-width: 1px;
        border-radius: 0px 0px 5px 5px;
    }

    .ingresar{
        margin: 20px 0px;
        font-size: 16px;
        background-color: #007D41;
        color: #ffffff;
        border: none;
        font-weight: 600;
        width: 100%;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 3px 3px 0px rgb(90, 89, 88);
    }

    .linkContrasenia{
        font-weight: 600;
        font-size: 13px;
        color: rgb(0, 125, 65);
    }
}