body {
  font-family: Arial, sans-serif;
  background-color: #f0f4f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

/* Title styling */
.title {
  margin-bottom: 20px;
  text-align: center;
}

.title h1 {
  font-size: 24px;
  color: #002B5B;
  letter-spacing: 1px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Form styling */
form {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 300px;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  color: #002B5B;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #aacd45;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #94b636;
}

#error {
  color: #e53935;
  margin-bottom: 10px;
}

.local-server-label {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 11px;
  color: #e53935;
  font-style: italic;
  font-weight: bold;
  user-select: none;
}