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

.container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 360px;
  text-align: center;
}

h1 {
  margin-bottom: 1rem;
  color: #333333;
}

form label {
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
  color: #555;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
}

button {
  width: 100%;
  background-color: #4caf50;
  color: #ffffff;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #45a049;
}

#statusMessage {
  margin-top: 1rem;
  font-weight: bold;
}

#statusMessage.success {
  color: #4caf50;
}

#statusMessage.error {
  color: #e53935;
}

p {
  margin-top: 1rem;
}

a {
  color: #0078ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
  