@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Oswald:wght@200;300;400;500;700&family=Poppins:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Oswald";
}

html {
  color: white;
}
body {
  background: #1c1c1c;
}

/*FORMULARIO DE LOGIN -------------------------------------------------*/

form {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 9px 9px 0 orangered;
}

form p {
  font-size: 22px;
  padding: 20px 0;
}
form input {
  width: 420px;
  font-size: 18px;
  padding: 8px;
  text-align: center;
  background: transparent;
  border: 3px solid orangered;
  color: #fff;
  border-radius: 10px;
}
form button {
  font-size: 16px;
  margin-top: 10px;
  display: block;
  padding: 7px 12px;
  background: transparent;
  border: 3px solid orangered;
  color: orangered;
  border-radius: 10px;
  cursor: pointer;
}
form button:hover {
  background: transparent;
  border: 3px solid #fff;
  color: #fff;
}

/*REDES DE PAGINA LOGIN  -------------------------------------------------------------*/

.redes2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.redes2 i {
  color: orangered;
  margin-left: 10px;
  font-size: 26px;
}
.redes2 i:hover {
  color: red;
}
.salir {
  width: 120px;
  font-size: 26px;
  margin: 0 auto;
  color: orangered;
  background: transparent;
  border: 3px solid orangered;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.salir:hover {
  background: transparent;
  border: 3px solid #fff;
  color: #fff;
}

/* RESPONSIVE=================================================================>*/
@media screen and (max-width: 678px) {
}
@media screen and (max-width: 608px) {
  form {
    max-width: 90%;
    width: 100%;
  }
  form input {
    width: 100%;
  }
  form button {
    font-size: 16px;
  }
}

@media screen and (max-width: 505px) {
  form {
    left: 0;
  }

  form {
    max-width: 90%;
    width: 100%;
  }
  form input {
    width: 100%;
  }
}
@media screen and (max-width: 496px) {
  form {
    max-width: 90%;
    width: 100%;
  }
}
@media screen and (max-width: 420px) {
  .redes {
    margin-bottom: 15px;
  }

  form {
    margin-top: 180px;
  }
  .salir {
    margin-bottom: 10px;
  }
}
