body {
  background: #0b1220;
  font-family: Arial, sans-serif;
}

.login-container {
  width: 380px;
  margin: 60px auto;
  background: #111827;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}

.logo {
  width: 60px;
  height: 60px;
  background: #2563eb;
  border-radius: 50%;
  line-height: 60px;
  font-size: 24px;
  margin: auto;
  font-weight: bold;
}

.subtitle {
  font-size: 12px;
  color: #9ca3af;
}

.roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 15px;
}

.roles input {
  display: none;
}

.roles label {
  padding: 6px 10px;
  background: #1f2933;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}

.roles input:checked + label {
  background: #2563eb;
}

input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: none;
}

button {
  width: 100%;
  padding: 10px;
  background: #2563eb;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

footer {
  margin-top: 20px;
  font-size: 11px;
  color: #9ca3af;
}
