@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");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap");
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(lightblue 10%, white 60%, lightblue 80%, lightskyblue 100%);
  color: #444;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Poppins", sans-serif;
  color: #444;
}

a {
  text-decoration: none;
}

header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e4e5e9;
  height: 4rem;
  width: 100%;
  padding: 1rem 2rem;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.0705882353);
  z-index: 2;
}
header a {
  display: flex;
  gap: 0.3rem;
}
header a img {
  height: 2.5rem;
  width: 2.5rem;
}
header a h1 {
  font-size: 1.6rem;
  font-family: "Exo 2", sans-serif;
  margin: 0 0 0.4rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
}
main .login-card {
  display: flex;
  align-items: center;
}
main .login-card form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e4e5e9;
  height: 4rem;
  width: 100%;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.0705882353);
  z-index: 2;
}

@media (max-width: 600px) {
  header {
    padding: 1rem;
  }
}