/*Main*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
  	background: #dcf0ff;
  	font-family: sans-serif;
 	overflow-y: scroll;
  	overflow-x: hidden;
}

.main{
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 3%;
	margin-bottom: 3%;
}

/*Questionario*/
fieldset{
  	text-align: center;
 	background: white;
}

label{
  	font-size: 18px;
}

h2, h3, h4{
  	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

label{
  	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn1{
    background-color: #4c7daf;
    color: white;
    border: 2px solid #4c7daf; 
    font-size: 16px;
    padding: 12px 28px;
}

.btn1:hover{
	background-color: #67a5e3;
	border: 2px solid #67a5e3; 
}

.btn2{
    background-color: #dfdede; 
    color: black;
    border: 2px solid #dfdede; 
    font-size: 16px;
    padding: 12px 28px;
}

.btn2:hover{
	background-color: #e7e7e7;
	border: 2px solid #e7e7e7; 
}


table tr td p{
  	text-align: center;
  	margin-left: 5%;
  	margin-right: 5%;
  	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  	font-size: 1.6vw;
}

/*Footer*/
footer{
	position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    height: auto;
    width: 100vw;
    padding-top: 40px;
    color: #fff;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h3{
    font-size: 2.1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 3rem;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
    color: #cacdd2;
}
.socials{
    list-style: none;
    margin: 1rem 0 3rem 0;
}
.socials li{
    margin: 0 10px;
}
.socials a{
    text-decoration: none;
    color: #fff;
    padding: 5px;
    border-radius: 50%;
}
.socials a i{
    font-size: 1.1rem;
    width: 20px;
    transition: color .4s ease;
}

@media (max-width:500px) {
	.footer-menu ul{
  		display: flex;
  		margin-top: 10px;
  		margin-bottom: 20px;
	}
}


/*MENU*/
.container_m {
    display: -webkit-box;
    display: flex;
    justify-content: space-around;
    -webkit-box-align: center;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 5px 15px -10px #111;
  }
  
  .logo {
    -webkit-box-ordinal-group: 2;
    order: 1;
    border-radius: 100%;
    font-size: 24px;
    color: #000000;
    line-height: 32px;
    padding: 10px;
  }
  
  img{
    width: 8vw;
    height: auto;
  }
  
  .item {
    color: rgba(0, 0, 0, 0.88);
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 24px;
  }
  .item:hover{
    color: #a09e9e;
    background: rgba(255, 255, 255, 0.15);
  }
  
  .item:nth-of-type(n+3) {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  
  @media all and (max-width: 800px) {
    .container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
      -webkit-box-align: stretch;
              align-items: stretch;
    }
  
    .logo {
      -webkit-box-ordinal-group: 1;
              order: 0;
      text-align: center;
      width: 100px;
      margin: auto auto 20px;
    }
  
    img{
      width: 100px;
      height: auto;
    }
  
    .item {
      text-align: center;
      border-bottom: 1px solid #111;
    }
  }
  
/*Login*/
.login-page {
    width: 360px;
    padding: 8% 0 0;
    margin: auto;
  }
  
  .form {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    max-width: 360px;
    margin: 0 auto 100px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  }
  .form input {
    font-family: "Roboto", sans-serif;
    outline: 0;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
  }

  .form button {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    outline: 0;
    background: #4c77af;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #FFFFFF;
    font-size: 14px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
  }
  .form button:hover,.form button:active,.form button:focus {
    background: #435aa0;
  }
  .form .message {
    margin: 15px 0 0;
    color: #b3b3b3;
    font-size: 12px;
  }
  .form .message a {
    color: #4c77af;
    text-decoration: none;
  }
  .form .register-form {
    display: none;
  }
  .container {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
  }
  .container:before, .container:after {
    content: "";
    display: block;
    clear: both;
  }
  .container .info {
    margin: 50px auto;
    text-align: center;
  }
  .container .info h1 {
    margin: 0 0 15px;
    padding: 0;
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
  }
  .container .info span {
    color: #4d4d4d;
    font-size: 12px;
  }
  .container .info span a {
    color: #000000;
    text-decoration: none;
  }
  .container .info span .fa {
    color: #EF3B3A;
  }	
	.btn_log{
		color:white;
		background-color: #67a5e3;
	}
	.btn_log:hover{
		background-color: #4c7daf;
	}

	.btn_sec{
		background-color: #f2f2f2;
	}
	.btn_sec:hover{
		background-color: #e5e5e5;
	}