* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "JetBrains Mono", monospace;
  background: #e5f6ff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
h1 {
  color: #333;
  margin-bottom: 24px;
}
#login-form {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 300px;
}
input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}
input:focus {
  outline: none;
  border-color: #4a90d9;
}
button {
  padding: 12px;
  background: #4ca1fc;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}
button:hover {
  background: #2a8af0;
}
#success-message {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: #3b3b3b;
}
