/* Background dan layout utama */
body {
  margin: 0;
  padding: 0;
  background-color: #f6f7fb;
  font-family: Arial, sans-serif;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Box login */
.login-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Logo Revalyze */
.logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

/* Judul & teks */
h2 {
  font-weight: normal;
  color: #333;
  margin-bottom: 30px;
  font-size: 16px;
}

/* Input form */
form input[type="text"],
form input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* Checkbox "Remember Me" */
form .remember {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
}

form .remember input[type="checkbox"] {
  margin-right: 8px;
}

/* Tombol login */
form button {
  width: 100%;
  background-color: #3a9120; /* hijau daun */
  color: white;
  padding: 10px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

form button:hover {
  background-color: #2e7319;
}
