@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto Mono", sans-serif;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/*Navbar*/

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 20px 70px;
  justify-content: space-between;
  align-items: center;
  background-color: #16697a;
  z-index: 100;
}

.button a {
  color: #000000;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  color: #000000;
}

/* Navbar */

/* Login */

.login {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: #000000;
}

.login-container {
  background-color: #ffa62b;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
}

.login-container h2 {
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ffffff;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #489fb5;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #489fb5da;
}

/* Login */

/* Footer */

footer {
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 70px;
  margin-top: 10px;
  align-items: center;
  text-align: center;
  background-color: #16697a;
}

/* Footer */

@media (max-width: 600px) {
  .navbar {
    padding: 20px 20px;
  }

  .footer {
    padding: 20px 20px;
  }
}
