form {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #4a90e2;
  outline: none;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #4a90e2;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #357ab8;
}


@media (max-width: 480px) {
  form {
    padding: 25px 30px;
  }
}

.dashboard-menu {
            height: 100vh;
            background-color: #f8f9fa;
            padding-top: 2rem;
            border-right: 1px solid #dee2e6;
        }
        .dashboard-menu a {
            display: block;
            padding: 0.75rem 1rem;
            margin-bottom: 0.5rem;
            color: #333;
            text-decoration: none;
            border-radius: 0.375rem;
        }
        .dashboard-menu a:hover, .dashboard-menu a.active {
            background-color: #0d6efd;
            color: #fff;
        }
        .dashboard-content {
            padding: 2rem;
        }
.dashboard-section.d-none {
  display: none;
}

.sidebar a.active {
  font-weight: bold;
  color: #0d6efd; /* warna Bootstrap primary */
}