body {
  background: #e4dc93;
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  padding-top: 80px; /* naikkan form ke atas */
}

.login-container {
  background: linear-gradient(135deg, #74ebd5, #9face6);
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

.input-group input {
  width: 100%;
  padding: 10px 10px 10px 35px;
  box-sizing: border-box; /* penting: agar tidak melebihi container */
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  font-size: 14px;
}

.remember-me {
  margin: 10px 0 20px 0;
  font-size: 14px;
}

button {
  background: linear-gradient(to right, #ca3131, #e26d6d);
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
    background: linear-gradient(to right, #56ab2f, #a8e063);
}
