* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
} 

body {
    display: flex;
    flex-direction: column;
    /* background-image: url(../img/background.jpg); */
    background-image: url(../img/cancilleria.png);
    background-size: cover;
    position: relative;
}

.curtain {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

header  {
    width: 100%;
}

header, .wrapper {
    z-index: 2;
}

.container {
    background-color: #03194d;
    width: 100%;
    display: flex;
    padding: 20px;
    align-items: center;
}

.ico {
    width:53px;
    height:65px;
    background-size: cover;
}

.ico_pdf {
    background-image: url(../img/pdficon.png);
    width: 37px;
    height: 45px;
    background-size: cover;
    margin-left: 10px;
    transform: rotateZ(-15deg);
  }

.title {
    flex: 1;
    display: flex;
    justify-content: center;
}

h1 {
    font-family: 'Roboto', sans-serif;
    color: white;
}

/*Formulario*/

.wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    margin-bottom: 200px;
}

.box{
    background:white;
    width:320px;
    border-radius:6px;
    margin: 0 auto 0 auto;
    padding:10px 0px 0px 0px;
    box-shadow: 5px 3px 15px black;
    display: flex;
    flex-direction: column;
  }

  h2 {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color: #03194d;
    padding: 10px 0px;
    font-size: 35px;
    font-weight: bold;
  }

  .inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .email{
    background:#ecf0f1;
    border: #ccc 1px solid;
    border-bottom: #ccc 2px solid;
    padding: 8px;
    width:250px;
    color:#AAAAAA;
    margin-top:10px;
    font-size:1em;
    border-radius:4px;
  }
  
  .btn-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
  }

  a {
    text-decoration: none;
  }
  
  .btn{
    display: block;
    background:#2ecc71;
    width:125px;
    padding: 10px 5px;
    color:white;
    border-radius:4px;
    border: #27ae60 1px solid;
    display: block;
    margin-top:20px;
    margin-bottom:20px;
    margin-left:16px;
    font-weight:800;
    font-size:1em;
    text-align: center;
    cursor: pointer;
  }
  
  .btn:hover{
    background:#2CC06B; 
  }
  
