/* RESET DASAR */
* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* CONTAINER */
.login-container {
  width: 100%;
  padding: 20px;
}

/* CARD */
.login-card {
  max-width: 360px;
  margin: auto;
  background: #1e293b;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* JUDUL */
.login-card h1 {
  text-align: center;
  margin-bottom: 6px;
  font-size: 22px;
}

.subtitle {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 24px;
}

/* FORM */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: #cbd5f5;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #0f172a;
  color: #fff;
}

.form-group input:focus {
  outline: none;
  border-color: #22c55e;
}

/* BUTTON */
button {
  width: 100%;
  padding: 11px;
  border: none;
  border-radius: 8px;
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: #16a34a;
}

/* MESSAGE */
.message {
  margin-top: 12px;
  font-size: 12px;
  text-align: center;
}
