﻿/*html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}*/


body {
    /*display: flex;*/
    /*justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;*/
}

.bodylogin {
    /*display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: clamp(2rem, 1vw - 0.1rem,3rem);*/
    /* Establece el tamaño máximo para la imagen */
    /*max-width: 100%;
    max-height: 100%;*/
    /*border: solid 2px black;*/
}

.ptb-login{
/*    height:100 px;
    width: 300 px;*/
}

.container {
/*    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #f2f2f2;*/
}

/*.form-containerLogin {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
    width: 100%;
    max-width: 400px;
}

    .form-container input[type="text"],
    .form-container input[type="password"] {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .form-container button {
        padding: 10px 20px;
        background-color: #4CAF50;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
    }*/

.carousel {
    width: 600px;
    height: 600px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
    flex-basis: auto;
}

    .carousel img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: absolute;
        animation: rotate 16s infinite;
        opacity: 0;
    }

@keyframes rotate {
    0% {
        opacity: 0;
    }

    12.5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    37.5% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.carousel img:nth-child(1) {
    animation-delay: 0s;
}

.carousel img:nth-child(2) {
    animation-delay: 2s;
}

.carousel img:nth-child(3) {
    animation-delay: 4s;
}

.carousel img:nth-child(4) {
    animation-delay: 6s;
}

.carousel img:nth-child(5) {
    animation-delay: 8s;
}

.carousel img:nth-child(6) {
    animation-delay: 10s;
}

.carousel img:nth-child(7) {
    animation-delay: 12s;
}

.carousel img:nth-child(8) {
    animation-delay: 14s;
}

}
