/* Login || style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  font-family: Arial, sans-serif;
  background: rgba(22, 27, 34, 1);
  overflow-x: hidden;
}

.container {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  display: block;
  margin-bottom: 20px;
  width: calc(100% - 40px);
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#loginButton {
  display: block;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#loginButton:hover {
  background-color: #0056b3;
}

.error-message {
  color: #ff0000;
  margin-bottom: 10px;
}

#navbar {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  border-bottom: 1px solid lightgrey; 
  color: #fff; 
  align-items:center;
  text-align: center;
  font-family: Arial,sans-serif;
  padding: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5), 0 0 40px 0 rgba(0, 0, 0, 0.5), 0 0 60px 0 rgba(0, 0, 0, 0.5); 
  background: rgba(0,0,0,0.35); 
  letter-spacing: 1.1px; 
  font-size: 0.8125em;
} 

#navbar a {
  cursor: pointer;
  transition: .2s ease;
}

#navbar a:hover {
  color: #0ef;
}

#navbar a i {
  color: #0ef; 
  font-weight :bold;
  transition: .2s ease;
}

#navbar a i:hover {
  transform: rotate(180deg);
}

a {
  text-decoration: none;
  color: #fff;
}

.signin-with-container {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  text-align: center;
}


