/* Reset dasar dan font */
.input-select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%239900ff' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #4a0072;
  text-align: center;
}

.container {
  padding: 10px;
}

/* Judul Halaman */
h2 {
  color: #9400FF;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 35px;
  position: relative;
  display: inline-block;
}

/* Garis panjang di bawah judul */
h2::after {
  content: '';
  display: block;
  height: 1px;
  background-color: #9400FF;
  width: 95vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 15px;
}

/* Form Styling */
form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

form input[type="text"],
form input[type="password"] {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fafafa;
  box-sizing: border-box;
}

form button[type="submit"] {
  width: 100%;
  padding: 14px;
  background-color: #9400FF;
  color: white;
  font-size: 16px;
  font-weight: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #7a00cc;
}

/* Link kembali */
a {
  color: #9400FF;
  font-weight: none;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
}

a:hover {
  text-decoration: underline;
}