/* RESET */
* {
  box-sizing: border-box;
}

/* BACKGROUND */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(124,252,0,0.35), transparent 55%),
    radial-gradient(circle at bottom, rgba(124,252,0,0.2), transparent 60%),
    #0a0f0c;
}

/* LOGIN PANEL — DISAMAKAN DENGAN DESAIN */
.login-page {
  width: 460px;
  padding: 42px;
  background: linear-gradient(
    180deg,
    rgba(28, 32, 30, 0.98),
    rgba(10, 12, 11, 0.98)
  );
  border-radius: 20px;
  border: 1px solid rgba(124,252,0,0.35);
  text-align: center;
  box-shadow:
    0 0 55px rgba(124,252,0,0.35),
    inset 0 0 30px rgba(255,255,255,0.04);
  color: white;
}

/* TITLE */
.brand {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  color: #7CFC00;
  text-shadow:
    0 0 10px rgba(124,252,0,0.9),
    0 0 25px rgba(124,252,0,0.6);
}

.subtitle {
  margin: 10px 0 28px;
  font-size: 14px;
  color: #cfcfcf;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  
}

/* INPUT */
.login-page input {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid #3d3d3d;
  background: linear-gradient(#1a1f1c, #0f1211);
color: white;
}

  .btn-login {
  width: 45%;
  height: 40px;
  margin-top: 10px;
  border-radius: 10px;
  border: none;
  background-color: #2e7d32;
  color: white;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
  margin-right: '50px';
}

.btn-login:hover {
  background-color: #388e3c;
}