/*Estilo a todo el cuerpo del html*/
body{
	margin:0;
	height: 100%
	width: 100%;
	font-family: 'Arial';
	background: #EAEAEA;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

table{
	width: 100%;
}

table td{
	background: white;
	height: 50px;
}

.inputregistro{
	width: 40%;
    height: 50px;
    display: flex;
    justify-content: center;
    padding: 10px;
    margin-top: 2%;
    margin-bottom: 1%;
    font-size: 22px;
}

/*Estilo para contenedor de login .cont*/
.cont{
	margin-top:5%;
	width: 80%;
	/*height: 500px;*/
	background: white;
	border: 1px black solid;
	display: flex;
}

/*Subcontenedor de dos partes 1 y 2*/
.subcont{
	width: 100%;
	display: flex;
	height: auto;
}
/*Estilo del contendor parte 1 (izquierda)*/
.cont_p1{ 
	background: #ffffff;
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
/*Estilo para el logo dentro de la parte 1*/
.cont_p1 img{
	width: 90%;
}
/*Estilo del contendor parte 2 (Derecha)*/
.cont_p2{
	margin-top: 5%;
	margin-bottom: 5%;
	background: white;
	width: 50%;
}
/*sub Div dentro de la parte 2 del contenedor*/
.cont_p2s1{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
/*SPAN para las etiquetas de las entradas e texto*/
.spant{
	width: 80%;
	font-size: 22px;
	margin-top: 5%;
}
/*Estilo de Input para login*/
.contp2_inp{
	font-size: 20px;
	border: 1px solid #c3c3c3;
	width: 75%;
	padding: 10px;
}
/*BOTON de inicio de sesión*/
.contp2_btn{
	width: 30%;
	border-radius: 5px;
	margin-top: 5%;
	margin-bottom: 5%;
	font-size: 20px;
	color: white;
	border: none;
	cursor: pointer;
	padding: 10px;
	background: #233979;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
/*TEXTO Y LIGA DE REGISTRO EN LOGIN*/
.contp2_div{
	font-size: 20px;
	width: 100%;
	text-align: center;
}
.contp2_div span{
	color: #1f165d;
	font-weight: bold;
}
/*Al seleccionar un input se representará d*/
 input:focus, input[type]:focus {
    border-color: rgb(23, 9, 119);
    box-shadow: 0 1px 1px rgba(19, 12, 64, 0.075)inset, 0 0 8px rgba(48,42,93,0.6);
    outline: 0 none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
--primary-color: #D96AA7;
--secondary-color: #422C73;
--complimentary-color: #88BFB5;
--contrast-color: #F2E527;
--light-color: #D2A9D9;
}

.container {
  background: #191919;
  min-height: 100vh;
  font-family: Montserrat, sans-serif;
}

nav a {
    font-size: 40px;
    color: #fff;
    text-decoration: none;
    padding: 20px;
    text-align: center;
}

nav {
    position: fixed;
    left: 0;
    z-index: 50;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    height: 100vh;
    background: var(--secondary-color);
}

section {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 0;
    opacity: 0;
    transition: all ease-in .5s;
    display: flex;
    justify-content: center;
    align-items: center;
} 

section h1 {
    color: #fff;
    font-size: 50px;
    text-transform: uppercase;
    opacity: 0;
}

/* Styles applied on trigger */
section:target {
    opacity: 1;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

section:target h1 {
    opacity: 0;
    animation: 2s fadeIn forwards .5s;
}

#first {
  background:var(--primary-color);
}
#second {
    background: var(--complimentary-color);
}

#third {
    background: var(--contrast-color);
}

#fourth {
    background: var(--light-color);
}

@keyframes fadeIn {
    100% { opacity:1 }
}

/*estilos para el menú*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  :root {
  --primary-color: #D96AA7;
  --secondary-color: #233972;
  --complimentary-color: #88BFB5;
  --contrast-color: #F2E527;
  --light-color: #D2A9D9;
  }
  
  .container {
	background: #191919;
	min-height: 100vh;
	font-family: Montserrat, sans-serif;
  }
  
  nav a {
	  font-size: 40px;
	  color: #fff;
	  text-decoration: none;
	  padding: 20px;
	  text-align: center;
  }
  
  nav {
	  position: fixed;
	  left: 0;
	  z-index: 50;
	  display: flex;
	  justify-content: space-around;
	  flex-direction: column;
	  height: 100vh;
	  background: var(--secondary-color);
  }
  
  section {
	  position: absolute;
	  top: 0;
	  height: 100vh;
	  width: 0;
	  opacity: 0;
	  transition: all ease-in .5s;
	  display: flex;
	  justify-content: center;
	  align-items: center;
  } 
  
  section h1 {
	  color: #fff;
	  font-size: 50px;
	  text-transform: uppercase;
	  opacity: 0;
  }
  
  /* Styles applied on trigger */
  section:target {
	  opacity: 1;
	  position: absolute;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  z-index: 10;
  }
  
  section:target h1 {
	  opacity: 0;
	  animation: 2s fadeIn forwards .5s;
  }
  
  #first {
	background:var(--primary-color);
  }
  #second {
	  background: var(--complimentary-color);
  }
  
  #third {
	  background: var(--contrast-color);
  }
  
  #fourth {
	  background: var(--light-color);
  }
  
  @keyframes fadeIn {
	  100% { opacity:1 }
  }


  @media only screen and (max-width: 600px) {
	.columns {
	  width: 100%;
	}
	.columnsright {
	  width: 100%;
	}
  }
  .columnsright {
	float: left;
	width: 90%;
	padding-right: 1%;
	padding-left: 10%;
	padding-top: 8px;
	text-align: center;
  }
  
  .titleTable {
	padding-top: 50px;
	padding-right: 30px;
	padding-bottom: 50px;
	padding-left: 80px;
  }