/* ✨ Login Page Styling — Black SaaS Theme */

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

.login-container {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.logo {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  margin-bottom: -20px;
}

.logo span {
  color: #888;
}

h2 {
  margin-bottom: 25px;
  color: #000000;
  font-size: 24px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  text-align: left;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

input {
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

button {
  background-color: #000000;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #222222;
}

#login-status {
  margin-top: 15px;
  font-size: 14px;
  color: red;
}
