html,
/* ----- -----  Configuracion de barra principal----- ----- */

/*RESET*/

*{
    margin: 0;
    padding: 0;
    font-family: 'Archivo', Verdana, sans serif;
    box-sizing: border-box;
}
:root {
    scroll-behavior: smooth;
}

body {
  height:100%;
  width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 80px 0;
}

/*::-webkit-scrollbar {
    display: none;
}*/

/*HEADER*/
header{
    height:100px;
    background: rgba(255, 255, 255,0.2); /* (94, 67, 230,0.2)*/
    padding: 0 50px;
    color:#fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:fixed;
    width: 100%;
    transition: 0.7s;
    z-index: 10;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

header.abajo{
    background: #6c5eeb;
    padding: 15px 20px;
}


header .logo{
    text-transform: ;
    color: #fff;
    font-weight: bold;
    font-family:'Archivo';
    font-size: 3rem;
    letter-spacing: 0.5px;
    position:relative;
    transition: 0.7s;
    text-decoration: none;
}

.icono{
    order: -1;
    width:70px;
    height:70px;
    transition: 0.7s;
}
.active {
    padding: 10px 10px;
    color: rgba(51,153,255,1);
    border-radius: 15px;
}

.menu a{
    color: #fff;
    text-transform: uppercase;
    text-decoration:none;
    padding: 0 10px;
    transition:  0.5s ;
    font-size: 18px;
}

.mostrar-menu,
.esconder-menu{
    font-size: 40px;
    cursor: pointer;
    display:none;
    transition: 0.4s;
}

.mostrar-menu{
    order:1;
}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
    color:#fff;
    background: #6c5eeb;
    padding: 10px 10px;
    border-radius: 15px;
}

#check{
    display:none;
}

header.abajo .logo,
header.abajo a{
    color:#fff;

}

header.abajo a:hover{
    padding: 10px 10px;
    background: #fff;
    color:  #6c5eeb;
    border-radius: 15px;
}

/*BANNER*/
#banner{

    padding:30px 0;
    background-image: url(../img/fondo_login.jpg);
    height: 100vh;
    background-size:cover;
    background-position:center;
}

/*CONTENIDO LOGIN*/

.contenido-login{
    display:flex;
    /*flex-direction: column;*/
    justify-content:center;
    text-align:center;
    margin-left: 5%;
    margin-right: 5%;
}
.contenido-login img{
    height:470px;
    margin-left:10%;
    margin-right:15%;
    margin-top:10%;
}
.contenido-login .form-group img{
    height:130px;
    margin-top:0%;
    padding: 10px 10px;
}

/* ----- -----  Estilos para el formulario----- ----- */

main {
	max-width: 800px;
	width: 80%;
	margin: auto;
	padding: 30px 30px;
}

.formulario {
	display: grid;
	grid-template-columns: 1fr ;
	gap: 5px;
	background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.568);
    margin-top: 8%;
    background-position:absolute;
	width:100%;
	margin-right:0%;
	margin-left:0%;
}

/* ----- -----  Configuracion formulario----- ----- */


.form-signin {
  width: 190%;
  max-width: 330px;
  padding: 1px;
  margin-left: 16%;
  margin-right: 10%;
}

.form-signin .checkbox {
  font-weight: 400;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}



/* ----- -----  Configuracion botones----- ----- */


.btnIngresar{
    display:inline-block;
    text-decoration:none;
    color: rgb(94, 67, 255);
    padding: 10px 30px;
    border: 3px solid rgb(94, 67, 230);
    background: #fff;
    border-radius: 30px;
    margin-top: 0px;
    transition: all 0.4s;
    font-size:18px;

}
.btnIngresar:hover{
    background: rgb(94, 67, 230);
    color: #fff;
}

/* ----- -----  Estilos para Validacion ----- ----- */
.formulario__grupo-correcto .formulario__validacion-estado {
	color: #1ed12d;
	opacity: 1;
}

.formulario__grupo-incorrecto .formulario__label {
	color: #bb2929;
}

.formulario__grupo-incorrecto .formulario__validacion-estado {
	color: #bb2929;
	opacity: 1;
}

.formulario__grupo-incorrecto .formulario__input {
	border: 3px solid #bb2929;
}





/*------------------------------------------------------------*/
/*RESPONSIVE*/

@media(max-width: 768px){

    header{
        height:60px;
        background: rgba(255, 255, 255,0.2); /* (94, 67, 230,0.2)*/
        padding: 0 20px;
        color:#fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position:fixed;
        width: 100%;
        transition: 0.7s;
        z-index: 10;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
    header.abajo{
        background:rgb(94, 67, 230);
        padding: 15px 20px;
    }

    header .logo{
        text-transform: ;
        color: #fff;
        font-weight: bold;
        font-family:'Archivo';
        font-size: 2rem;
        letter-spacing: 0.5px;
        position:relative;
        transition: 0.7s;
        text-decoration: none;
    }

    .icono{
        order: -1;
        width:40px;
        height:45px;
    }
    .active {
        padding: 10px 10px;
        color: #fff;
        border-radius: 15px;
    }

    .mostrar-menu,
    .esconder-menu{
        display:block;
    }
    .menu{
        position:fixed;
        width:100%;
        height:100vh;
        background: #6c5eeb;
        /* left: 0;*/
        right: -100%;
        top:0;
        text-align:center;
        padding: 100px 0px;
        z-index: 100;
        transition: 0.8s;
    }

    .menu a{
        display: block;
        padding: 20px;

    }

    .esconder-menu{
        position: absolute;
        top:40px;
        right: 40px;
    }

    #check:checked ~.menu{
        right:0;

    }

    header.abajo .logo,
    header.abajo a{
        color:#fff;
    }

    header.abajo a:hover{
        padding: 10px 10px;
        background: #fff;
        color: #6c5eeb;
        border-radius: 15px;

    }

    /*BANNER*/

    #banner{
    padding: 0 50px;
    background-image: url(../img/Fondo_In1.png);
    height: 85vh;
    background-size:cover;
    background-position:center;
    left:0;
    }

    .contenido-banner{

        position: center;
        color: #fff;
        height: 100%;
        display:flex;
        flex-direction: column;
        justify-content:center;
        margin-right:0px;
    }

    .contenido-banner h3{
        background-color: rgba(101, 71, 201,0.4);
        border-radius:20px;
        font-size: 20px;
        font-weight:400;
        padding: 15px 5px;

        font-family:'Archivo';
        letter-spacing: 0.5px;

    }

    .contenido-banner h3 span{
        margin-bottom:10%;
        font-size: 40px;
        font-weight: 600;

    }

    /*NOSOTROS*/

    #nosotros{
        padding:30px 30px;
    }

    #nosotros div h3{
        position: center;
        color: rgb(94, 67, 230);   /*celeste: 59, 167, 245, azul: 94, 67, 230*/
        height: 100%;
        display:flex;
        flex-direction: column;
        justify-content:center;
    }

    #nosotros div h3{
        font-size: 20px;
        font-weight:300;
        padding: 10px 0px;
        font-family:'Archivo';
        letter-spacing: 0.7px;
        margin-top:10%;
        margin-bottom:2%;
    }

    #nosotros div h3 span{
        font-size: 25px;
        font-weight: 800;
        letter-spacing: 0.7px;
    }

    .contenido-informacion{
        flex-direction:column;
        justify-content:center;
        text-align:center;
    }
    .contenido-informacion img{
        height:250px;
    }
    .contenido-informacion p {
        color:#4D4D5C;
        margin-top:2%;
        font-size: 13px;
        font-weight:500;
        margin-left: 5%;
        margin-right: 5%;
    }

    .boton-mas{
        display:inline-block;
        text-decoration:none;
        color: rgb(94, 67, 230);
        padding: 10px 30px;
        border: 3px solid rgb(94, 67, 230);
        border-radius: 30px;
        margin-top: 25px;
        transition: all 0.4s;
        font-size:13px;
    }
    .boton-mas:hover{
        background: rgb(94, 67, 230);
        color: #fff;
    }

 }
