/* --------- Estilos Header --------- */
body {
  background-color: #fef7ef;
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.main-header {
  display: flex;
  align-items: stretch;
  border-bottom: 5px #666666 solid;
  justify-content: center;
  background-color: #fff;
  margin: 0;
}

.logo-ideaaa {
  background-color: white;
  align-self: flex-start;
  height: 8vh;
  width: auto;
}

.nombre-sistema {
  align-self: center;
  margin-left: 50px;
  color: #271401;
  font-size: 30px;
}

.linea-naranja {
  border-top: 5px #f78c1f solid;
  margin-top: 2px;
}

.linea-verde {
  border-top: 5px green solid;
  margin-top: 2px;
}

fieldset {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: none;
  width: 70%;
  text-align: center;
}

legend {
  margin-bottom: 8px;
}

.nota{
	display:block;
}

#frmAlta {
  display: flex;
  flex-direction: column;
  width: 50vw;
  height: 70vh;
  margin: 5vh auto;
  align-items: center;
  justify-content: space-evenly;
  padding: 25px;
  box-sizing: border-box;
  background-color: #fffefd;
  border-radius: 20px;
  box-shadow: 0px 10px 40px rgb(0, 0, 0, 0.5);
  color: #271401;
}

.title {
  font-size: 1.7vw;
  margin: 0;
  margin-bottom: 10px;
}

.label-login,
.input-login {
  font-size: 1.2vw;
  font-weight: 500;
  text-align: center;
}

.input-login {
  font-size: 1vw;
  padding: 10px 20px;
  border-radius: 15px;
  background-color: #f7f7f7;
}

.extra-links {
  align-self: center;
  margin-top: 30px;
  font-family: "Inter", Verdana, Geneva, Tahoma, sans-serif;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
}

.extra-links a:link,
.extra-links a:visited {
  color: #271401;
  font-weight: 300;
  font-size: 0.85vw;
  padding: 0 20px;
}

.extra-links a:hover,
.extra-links a:active {
  font-weight: 500;
}

button {
  background-color: #f78c1f;
  border: #f78c1f;
  color: white;
  font-weight: bolder;
  font-size: 1.2vw;
  padding: 10px 30px;
  border-radius: 15px;
  margin-top: 20px;
}

@media(max-width:800px){
	.main-header{
	  width:100%;
	  justify-content: center;
	}
	.nombre-sistema{
	  margin:0px;
	  margin-left:20px;
	  text-align:center;
	  width:60%;
	  font-size: 1.2rem;
	}
	.opciones-menu{
	  min-width:50%;
	}
	.el{
	  width:30%;
	  font:size
	}
	#frmAlta{
	  width:85%;
	  height:800px;
	}
	.title{
	  font-size:1.728rem;
	  text-align:center;
	}
	.label-login{
	  font-size:1.2rem;
	}
	.input-login{
	  font-size: 1rem;
	  margin-bottom:15px;
	  width:100%; 
	}
	button{
	font-size:1rem;
	}
	.extra-links,
	.extra-links a:link,
	.extra-links a:visited,
	.extra-links a:hover,
    .extra-links a:active{
	  font-size:0.833rem;
	  text-align:center;
	}
}

