@import url('https://fonts.googleapis.com/css2?family=Rubik:ital&display=swap');

*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
}

body {
  background-image: url('../img/fondo-empresa.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 0;
}

.contenedor-login {
  width: 95%;
  max-width: 450px;
  background: #fff;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.logo {
  width: 150px;
}


.login-titulo {
  font-size: 15px;
  font-weight: 400;
  margin: 15px 0;
  text-align: center;
}

form {
  width: 100%;
}

.c-input {
  margin: 20px auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid #ccc;
}

.c-input input {
  border: none;
  width: 80%;
  padding: 10px;
  outline: none;
}

.c-input i {
  width: 20%;
  text-align: center;
  font-size: 19px;
  border-left: 1px solid #ccc;
}

.contenedor-login button {
  width: 100%;
  border: none;
  padding: 10px;
  background: #000;
  color: #fff;
  margin: 15px 0;
}

@media (min-width: 800px) {
  body {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}