body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #201c1c;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 320px;
  text-align: center;
}

.logo {
  width: 100px;
  margin-bottom: 20px;
}

.welcome-text {
  color: #000;
  font-weight: bold;
  font-size: 16px; /* Smaller size */
  text-align: left; /* Left align */
  width: 100%;
  margin-bottom: 5px;
}

h3 {
  margin-bottom: 20px;
  color: #555;
  text-align: center;
}

form input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  width: 100%;
  padding: 12px;
  background-color: #ff0000;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}

form button:hover {
  background-color: #830000; /* Dark gray on hover */
}