
/*contenedor que se adapta a su contenedor padre main*/

.ingreso__titulo{
    font-size: 1.6em;
    margin-bottom: 0.7em;   
}
.label{
    display: block;
    margin: 0.5rem 0; 
    width: 90%;
    background-color: transparent;
}


/* fin de los estilos de los botones de ingreso */

.contacto__container{
    height: 90%;
    width: 90%;
    background-color: rgb(0,60,255);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 5px lightskyblue;
}
.contacto__header{
    border-bottom: 1px solid lightskyblue;
    padding: 0.3em 0 0.3em 0;
    width: 100%;
    text-align: center;
    background-color: rgb(10,40,220);
    border-radius: 5px 5px 0 0;
}
.contacto__header h2{
    font-size: 1.1em;
    background-color: transparent;
}
.contacto__form{
    width: 100%;
    min-height: 90%;
    font-size: 1.1em;
    text-align: center;
    align-items: center;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* estilos para container del registro */

.registro__container{
    height: 90%;
    width: 90vw; /* luego cambiar por max-width: 90% */
    background-color: rgb(0,60,255);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    /*display: grid;
    grid-template-rows: 3.5em 3fr 1.5fr;
    grid-template-areas: "registro__header"
                         "registro__form"
                         "registro__otros";
    */
    box-shadow: 0 0 5px lightskyblue;
}
.registro__header{
    border-bottom: 1px solid lightskyblue;
    padding: 0.3em 0 0.3em 0;
    width: 100%;
    text-align: center;
    background-color: rgb(10, 40, 220);
    border-radius: 5px 5px 0 0;
}
.registro__header h2{
    font-size: 1.1em;
    background-color: transparent;
}
.registro__form{
    width: 100%;
    min-height: 90%;
    font-size: 1.1em;
    text-align: center;
    align-items: center;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    
}
.registro__otros{
    grid-area: registro__otros;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 5px 5px;
    background-color: transparent;
}
.input_registro{
    font-size: 1em;
    width: 90%;
    margin: 7px 0 0 0;
    border: 1px solid lightskyblue;
    padding: 0.3em;
    margin-top: 0.1em;
    background-color: rgba(247, 244, 244, 0.774);
    border-radius: 3px;
}
.registro__gmail{
    width: 80%;
    display: flex;
    font-size: 0.8em;
    justify-content: center;
    border: 1px solid lightskyblue;
    background-color: rgb(10,40,220);
    border-radius: 100px;
    padding-left: 1.5em;
    margin-bottom: 0.7em;
}
/* fin de los estilos para el container del registro */

/* estilos para el container del ingreso */
.ingreso__container{
    height: 90%;
    width: 90%;
    background-color: rgb(0, 60, 255);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    /*
    display: grid;
    grid-template-rows: 3.5em auto;
    grid-template-areas: "ingreso__header"
                         "ingreso__form";
    */
    box-shadow: 0px 0px 5px lightskyblue;
    
}
.ingreso__header{
    width: 100%;
    text-align: center;
    background-color: rgb(10, 40, 220);
    border-radius: 5px 5px 0 0;
    padding: 0.3em 0 0.3em 0;
    border-bottom: 1px solid lightskyblue;
    
}
.ingreso__header h2{
    font-size: 1.1em;
    background-color: transparent;
}
.ingreso__form{
    width: 100%;
    min-height: 90%;
    font-size: 1.1em;     
    text-align: center;
    align-items: center;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.input_ingreso{
    font-size: 1em;
    width: 90%;
    margin: 7px 0 0 0;
    border: 1px solid lightskyblue;
    padding: 0.3em;
    margin-top: 0.1em;
    background-color: rgba(247, 244, 244, 0.774);
    border-radius: 3px;
}
/* estilos de los botones de ingreso y del boton de ingreso de gmail */
.input_btn{
    width: 90%;
    font-size: 1em;
    border: 1px solid lightskyblue;
    background-color: rgb(10, 40, 220);
    border-radius: 3px;
    padding: 0.5em;
    margin-top: 0.7em;
    transition: 0.5s;
}
.input_btn:hover{
    border-radius: 100px;
}
.ingreso__gmail{
    width: 80%;
    display: flex;
    font-size: 0.8em;
    justify-content: center;
    border: 1px solid lightskyblue;
    background-color: rgb(10, 40, 220);
    border-radius: 100px;
    padding-left: 1.3em;
    margin-bottom: 0.7em;
}
.label_gmail{
    font-size: 1.2em;
    background-color: transparent;
}
.gmail-icon{
    width: 40px;
    height: 40px;
    background-image: url('../icon/gmail__icon.png');
    background-size: cover;
    display: inline-block;
    background-color: transparent;
}
.btn_gmail{
    background-color: transparent;
}
.btnSubmit{
    margin: 0.5em;
}
.g-recaptcha{
    size: compact;
    theme: dark;
}
/*.ingreso__otros{
    grid-area: ingreso__otros;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 5px 5px;
    background-color: transparent;
}*/

/* fin del estilos del container del ingreso */

/* inicio de los estilos del container del inicio */
.main__inicio{
    display: grid;
    height: 100%;
    width: 100%;
    grid-template-rows: 1fr 5em;
    grid-template-areas: "slider"
                         "ayuda-slider";
    
}
.slider{
    grid-area: slider;
    width: 100%;
    height: 100%;
    justify-items: center;
    align-items: center;
    padding-top: 3em;
}
.ayuda-slider{
    padding: 1em;
    width: 100%;
    height: 100%;
    grid: ayuda-slider;
}
/* fin de los estilos del inicio*/
 
/*.main__nosotros, .main__contacto, .main__ingreso{
    border: 1.5px solid black;
    height: 100%;
    width: 100vw;
    display: flex;
    padding: 1em 0 1em 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.inicio__construccion{
    width: 250px;
    height: 250px;
    background-image: url('../img/worker.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}*/

/* aca empiezo a darle estilos al slider */

.slider-container{
    display: flex;
    width: 90vw;
    height: 90%;
    border-radius: 5px;
    overflow-x: scroll;
    box-shadow: 0px 0px 5px lightskyblue;
    background-color: rgb(10, 59, 221);
    scroll-snap-type: x mandatory;
}
.slider-item{
    background-color: rgb(10, 59, 221);
    
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 1em;
    display: flex;
    text-align: justify;
    flex-direction: column;
    justify-content: space-around;
    scroll-snap-align: center;
    
}
.slider-item h2,p{
    background-color: transparent;
}

.slider-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font: 2rem;
    color: white;
    opacity: 0.5;
    padding: 0.3rem;
    z-index: 10;
    pointer-events: none;
    user-select: none;
    border-radius: 2px;
    background-color: rgba(4, 55, 97, 0.5);
}
.slider-arrow.left{
    left: 25px;
}
.slider-arrow.right{
    right: 25px;
}

.swipe-hint{
    text-align: center;
    font-size: 1.2em;
    color: #ccc;
    background-color: transparent;
    margin-top: 0.5em;
    animation: blink 2s infinite;
}
@keyframes blink{
    0%, 100% {
        opacity: 0.4;
    }
    50%{
        opacity: 1;
    }
}

@keyframes nudgeLeftRight {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-20px); }
  50%  { transform: translateX(0); }
  75%  { transform: translateX(-10px); }
  100% { transform: translateX(0); }
}

.nudge {
  animation: nudgeLeftRight 1s ease;
}

/* aca termino de darle estilos al slider */



.nav__main{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    line-height: 65px;
    padding: 0 20px 0;
    
}
.enlace{
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    padding: 0 15px 0 ; 
    text-transform: uppercase;
}
.nav ul{
    position: absolute;
    background-color: rgb(10, 59, 221);
    margin-top: 0.5em;
    margin-left: 0.1em;
    padding: 0.5em;
    list-style: none;
    width: 98vw;
    left: -100%;
    transition: all 0.5s;
}
.nav__main:has(#check:checked) + ul {
    left: 0;
}

.nav ul li{
    padding: 0.2em;
}
.nav ul a{
    display: block;
    padding: 0.5em;
    text-decoration: none;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    text-align: center;
    width: 100%;
    
}
li a.active, li a:hover{
    background-color: rgb(10, 59, 221);
    transition: .5s;
}
.checkbtn{
    font-size: 35px;
    cursor: pointer;
    padding: 0 15px 0;
    border-radius: 5px;
    transition: .3s;
    background-color: rgb(10, 40, 220);
    box-shadow: 0px 0px 5px lightskyblue;
}
.fas{
   background-color: rgb(10, 40, 220);
}
.checkbtn:hover{
    border-radius: 5px;
}
#check{
    display: none;
}

.titulo{
    font-size: 1.8em;
    margin-left: 0.5em;
}


/* errores */
.errores{
    border-radius: 3px;
    width: 80%;
    margin-top: 0.5em;
       
}
.error{
    background-color: rgb(248, 44, 44);
    padding: 0.3em;
}
.banner{
    display: none;
}