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

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a {
  color: white;
  text-decoration: none;
}

ul {
  list-style: none;
}

input[type="range"] {
  width: 100%;
  height: 2px;
  margin: 1rem auto;
}

datalist {
  display: flex;
  justify-content: space-between;
  color: white;
  width: 100%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  position: sticky;
  z-index: 100;
  top: 0;

  background-color: black;
  border-bottom: 1px solid white;
  padding: 1rem;
  font-size: 1rem;
}

nav .brand {
  font-size: 1.5rem;
  font-weight: bold;
}

nav .nav-items a {
  margin: 0 1rem;
}

.section1 {
  width: 100%;
  margin: 2rem 4rem;
}
.login-title {
  font-size: 2.5rem;
  font-size: 400;
}
.inputfields {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.inputfields #loginemail {
  padding: 15px;
  width: 90%;
  font-size: 1rem;
  height: 3rem;
}
.inputfields #loginpassword {
  padding: 15px;
  width: 90%;
  font-size: 1rem;
  height: 3rem;
}
#loginbtn {
  width: 20%;
  border-radius: none;
  border: 1px solid black;
  padding: 1rem;
  font-size: 1rem;
  color: rgb(16, 15, 15);
  background-color: #fff;
  cursor: pointer;
}
#loginbtn:hover{
    color: #fff;
    background-color: #000;
}
