html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
}
body{
    font-family: 'Montserrat', sans-serif;
}

/* Globales */
.contenedor{
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
}
img{
    max-width: 100%;
}
/* Utilidades */
.boton-login{
    background-color: #7367f0;
    padding: 8px 16px;
    color: #ffffff;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    width: 100%;
    margin: 10px 0;
}

/* header */

.body{
    background-image: url(../images/fondo.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}
.header{
    display: flex;
    justify-content: center;
    padding: 60px 0 10px 0;
}
.logo img{
    width: 250px;
}
.contenedor-login{
    max-width: 450px;
    margin: 0 auto;
    padding: 50px; 
    background-color: rgba(255, 255, 255, 0.671);
    border-radius: 0.5rem;
}

.input{
    width: 100%;
    padding: 7px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    background-color: #ffffff;
}
.input.user{
    background-image: url(../images/user.png);
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 32px;
    background-size: 18px;
}
.input.password{
    background-image: url(../images/password.png);
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 32px;
    background-size: 18px;

}
/* footer */
.footer{
    background-color: #7367f0;
    color: #ffffff;
    padding: 5px 0;
    margin-top: 10px;
    font-size: 14px;
}

/* Internas - registro */