*{
  box-sizing: border-box;
}
body{
  background-image: url(../img/header_inicio.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}
h1{
  font-size: 2em;
}
.logo-img{
  width: 70px;
  height: 70px;
}
button{
  font-size: 1.25em;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  color: white;
  background-color:darkblue;
}
button:hover{
  background-color: rgb(13, 13, 169);
  cursor: pointer;
}
.container{
  max-width: 1400px;
  margin: auto;
}
header .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nombre-compania{
  padding: 25px 30px;
  margin: 0;
  font-weight: bold;
  color: blue;
  font-size: 1.6em;
}

/*Inicio Sesion*/
#main .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
form{
  border-radius: 0px;
  background: rgba(219, 234, 254, 0.411);
  box-shadow: 8px 10px 20px rgba(3,3,3,.6);
  padding: 10px;
  margin-top: 5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}
.icons{
  width: 15px;
  height: 15px;
}
.campos_form{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 10px;
}
input{
  text-decoration: none;
  font-size: 17px;
  color: #fff;
  padding: 8px;
  border-radius: 6px;
  border: none;
  font-weight: bolder;
  background: rgba(115, 109, 109, 0.15);
  transition: all 0.2s ease-in-out;
  margin: 5px;
}
  
input:focus {
  outline: none;
  box-shadow: 3px 3px 10px #333;
  background: rgba(169, 164, 164, 0.4);
}

@media(min-width: 720px){
  .nombre-compania{
    margin: 20px;
    font-size: 2.5em;
  }
  form{
    margin: 1.5em;
    padding: 30px;
  }
  .campos_form{
    display: flex;
    flex-direction: row;
  }
}
a{
  text-decoration: none;
  font-size: 1.25em;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  color: white;
  background-color:darkblue;
}
a:hover{
  background-color: rgb(13, 13, 169);
  cursor: pointer;
}
p{
  color: rgb(156, 12, 12);
}