@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
@font-face {
    font-family: "Thousands";
    src: url("style/kg_ten_thousand_reasons/KGTenThousandReasons.ttf");
  }
html,body{
  display: grid;
  height: 100%;
  width: 100%;
  place-items: center;
  background: linear-gradient(375deg, #1cc7d0, #2ede98);
  background-size:cover;
  background-repeat: no-repeat;
}
::selection{
  color: #fff;
  background: #1cc7d0;
}

.contenedor-wrapper{
    display: flex;
    width: 1000px;
    padding-bottom: 100px ;
 }
body{
    background-image: url(img/fondo.png);
}

.header{
  height: 60px;
  margin-top: 30px;
  
}

.header .contenedor{
  width: 100%;
  display: flex;
  
  
  
}
h1{
  margin-top: 30px;
  padding-left: 10px;
  font-size: 50px;
  font-family: "Thousands";
}




.menu {
  list-style: none;
  padding: 0;
  margin:0;
  display: flex;
  flex-direction: row;
}

.menu__link{
  display: block;
  padding: 20px;
  background-color: #fba919;
  text-decoration: none;
  color: #FFF;


}

.menu__link:hover{
  background-color: white;
  color:#fba919;
}

.section{
  width: 900px;
  display: flex;
  padding: 30px 0;
}
.section img{
  height: 35%;
  width: 35%;
  display: block; 
  margin-left: auto; 
  margin-right: auto;
  padding-right: 20px;
}
.section p{
  font-family: "Thousands";
  font-size: 13px;  
  text-align: justify;
}

.form-register {
    width: 400px;
    background: #24303c;
    padding: 30px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 70px;
    border-radius: 4px;
    font-family: "thousands";
    color: white;
    box-shadow: 7px 13px 37px #000;
  }
  
  .form-register h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .controls {
    width: 100%;
    background: #24303c;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    border: 1px solid #1f53c5;
    font-family: "thousands";
    font-size: 18px;
    color: white;
  }
  
  .form-register p {
    height: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
  }
  
  .form-register a {
    color: white;
    text-decoration: none;
  }
  
  .form-register a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .form-register .botons {
    width: 100%;
    background: #1f53c5;
    border: none;
    padding: 12px;
    color: white;
    margin: 16px 0;
    font-size: 16px;
  }