*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	font-family: sans-serif;
}

.fa{
	color: #04bd7d;
    margin-left: 10px;
    margin-top: 10px;
    position: absolute;
}
.contenedor{
	position: relative;
	background-image: url('../galeria/10.jpg');
	background-size: cover;
	height: 100vh;
}
.presentacion{
	top: 5vh;
	left: 5%;
	width: 40%;
	position: absolute;
	padding: 1rem;
	border: 5px solid #fff;
	background: rgba(53, 73, 93,0.8);
	border-radius: 10px;
	-webkit-box-shadow: inset 1px 1px 6px 7px rgba(66, 68, 90, 1);
-moz-box-shadow: inset 1px 1px 6px 7px rgba(66, 68, 90, 1);
box-shadow: inset 1px 1px 6px 7px rgba(66, 68, 90, 1);
}
.logo_institucion{
	width: 15%;
	margin: 0 auto;
}
.logo_institucion img{
	display: block;
	max-width: 100%;
}
.presentacion h1{
	color: #fff;
	font-size: 34px;
	text-align: center;
}
.presentacion p{
	color: #fff;
	font-size: 24px;
	text-align: justify;
}
.presentacion h3{
	color: #FFFF02;
	text-align: center;
}
.presentacion h4{
	color: #FDC413;
	text-shadow: 3px 3px 3px #398D02
;
}
#login {
	position: absolute;
	width: 400px;
	right: 5%;
	top: 20vh;
	border-radius: 0 0 10px 10px;
	background: rgba(0,0,0,0.4);
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
#login .perfil {
	position: absolute;
	top: -1.5rem;
	left: 50%;
	transform: translate(-50%, -40%);
	height: 6.5rem;
	width: 6.5rem;
	border-radius: 100%;
	border: .2rem solid #05B21D;
	box-shadow: 0 5px 5px 0 #ccc;	
	overflow: hidden;
}
.perfil img{
	max-width: 100%;
	display: block;
}
.logo_proyecto{
	width: 50%;
	margin: 1rem auto;
}
.logo_proyecto img{
	max-width: 100%;
}
ul {
  display: flex;
  &.tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 5px 5px 0 0;
    li {
      background: #0f92d1;
      color: #fff;
      display: inline-block;
      padding: 10px 0;
      cursor: pointer;
      flex: 1;
      text-align: center;
      font-weight: 600;
      &.actual {
      	background: rgba(0,0,0,0.4);
        color: #fff;
      }
    }
  }
}
.tab-content{
  display: none;
  padding: 15px;
  &.actual {
    display: inherit;
    background: rgba(0,0,0,0.4);
    border-radius: 0 0 10px 10px;
  }
}

input[type=text], input[type=password], input[type=email] {
  background: #fff;
  width: 100%;
  padding: 15px 0;
  margin-bottom: 10px;
  border: none;
  text-indent: 60px;
  border-radius: 5px;
}
input[type=password] {
  margin-bottom: 0;
}
input[type=submit] {
  background: #1FB50D;
  border: none;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  &:hover {
    background: #107803;
  }
}
.input-icon {
  position: absolute;
  margin-top: 17px;
  margin-left: 17px;
  &::after {
    content: "";
    display: block;
    height: 45px;
    width: 1px;
    background: #ddd;
    position: absolute;
    margin-top: -33px;
    left: 30px;
  }
}
.btn-container {
	background: rgb(0,175,0);
    margin-top: 10px;
}
.btn-icon {
  position: absolute;
}
.sol_acc h3{
	color: #FFC300;
	text-align: center;
	padding: .5rem 0;
}
.sol_acc p{
	color: #fff;
	font-size: 18px;
	padding: .5rem 0;
	text-align: justify;
}
.contactos{
	flex: auto;
	display: flex;
	margin-top: 1rem;
	justify-content: space-evenly;
}
.contactos li{
	list-style: none;
	display: block;
	color: #fff;
	font-size: 22px;
}
.contactos li a{
	text-decoration: none;
	color: #D1FECC;
}
.contactos li a:hover{
	color: #24B7FC;
}
.contactos .fa-phone{
	color: #0AADEA;
}
.contactos .fa-square-whatsapp{
	color: #2CB803;
}
@media screen and (max-width: 640px) {
	.presentacion{
		display: none;
	}
	#login{
		width: 90%;
	}
}