
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1e1e1e;
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-box {
  background-color: #2b2b2b;
  padding: 40px;
  border-radius: 10px;
  width: 320px;
  text-align: center;
}

.logo {
  width: 50px;
  margin-bottom: 10px;
}

h2 {
  margin-bottom: 30px;
  font-size: 1.2em;
}

label {
  display: block;
  text-align: left;
  margin: 10px 0 5px;
  font-size: 0.9em;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #3a3a3a;
  color: #fff;
  margin-bottom: 15px;
}

button {
  width: 60%;
  margin: 0 auto;
  display: block;
  padding: 8px;
  background-color: #BF3F13;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: rgb(150, 50, 15);
}
