/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 7/07/2021, 06:13:26 PM
    Author     : namuel.solorzano
*/

*{
    margin:0;
    padding:0;
}

body{
    background-color: #E9ECF4;
    color: #000;
    font-family:'Roboto', sans-serif;
    
}

#contenedor{
    width: 90%;
    
    margin: 20px auto;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    
    grid-template-areas: "header header"
                         "section section"
                         "footer footer";
   
}

#contenedor header{
    background-color: #12203e;
    color: #fff;
    grid-area: header;
    padding: 20px;
    font-size: 80px;
}

#contenedor section{
    grid-area: section;
    background-color: #55a8fd;
}



#contenedor footer{
    background-color: #12203e;
    color: #fff;
    grid-area: footer;
    padding: 20px;
    font-size: 30px;
}

form {
    display: grid;
    padding: 1em;
    background: #f9f9f9;
    border: 1px solid #c1c1c1;
    
    margin: 2rem auto 2rem auto;
    max-width: 600px;
    padding: 1em;
    grid-template-columns: 200px 1fr;
    grid-gap: 16px;
  }

  label {
    text-align: right;
    grid-column: 1 / 2;
    font-family:'Roboto', sans-serif;
    font-size: 20px;
    color: #0000cc;
    font-weight: bold;
  }

  input, #submit {
    grid-column: 2 / 3;
  }
  
  form input {
    background: #fff;
    border: 1px solid #9c9c9c;
    border-radius: 5px;
  }
form #submit {
      background: lightgrey;
      padding: 0.7em;
      width: 90%;
      border: 0;
      text-align: center;
      
}
form a:hover {
  background: gold;
}

label {
  padding: 0.5em 0.5em 0.5em 0;
}

input {
  padding: 0.7em;
  margin-bottom: 0.5rem;
}
input:focus {
  outline: 3px solid gold;
}

