@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

section {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(to left, rgb(233, 30, 99), rgb(196, 0, 67));
  display: grid;
  place-items: center;
}

form {
  width: 100%;
  max-width: 400px;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  padding: 70px 30px;
  border-radius: 7px;
}

h1 {
  margin-bottom: 40px;
  position: relative;
}

h1::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 4px;
  background-image: linear-gradient(to left, rgb(233, 30, 99), rgb(196, 0, 67));
  border-radius: 4px;
  left: 0;
  bottom: 0;
}

input {
  width: 100%;
  padding: 10px 0px;
  outline: none;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}

input + span {
  width: 100%;
  height: 2px;
  background-color: rgb(211, 211, 211);
  position: relative;
  margin-bottom: 30px;
  border-radius: 3px;
}

input + span::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0px;
  height: 2px;
  background-image: linear-gradient(to left, rgb(233, 30, 99), rgb(196, 0, 67));
  border-radius: 3px;
  transition: 0.3s;
}

input:hover + span::before,
input:not(:placeholder-shown) + span::before,
input:focus + span::before {
  width: 100%;
}

button.login-btn {
  background-image: linear-gradient(to left, rgb(233, 30, 99), rgb(196, 0, 67));
  color: white;
  margin-bottom: 30px;
  cursor: pointer;
  outline: none;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  padding: 10px 0px;
  border-radius: 5px;
  transition: 0.5s;
}

button.login-btn:hover {
  letter-spacing: 1px;
  background-image: linear-gradient(to right, rgb(233, 30, 99), rgb(196, 0, 67));
}

form p {
  font-size: 15px;
  text-align: center;
  margin-bottom: 20px;
}

form ul li:first-child {
  margin-bottom: 20px;
}

form ul li a {
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  font-size: 15px;
  padding: 12px 10px;
  border-radius: 4px;
  transition: background-color 0.5s;
}

form ul li .twi {
  background-color: rgb(29, 161, 242);
}

form ul li .twi:hover {
  background-color: rgb(27, 132, 196);
}

form ul li .face {
  background-color: rgb(24, 119, 242);
}

form ul li .face:hover {
  background-color: rgb(27, 104, 204);
}

form ul li a i {
  margin-right: 7px;
}