/* General Reset */
* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: linear-gradient(to right, #eef2f3, #8e9eab);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Wrapper for centering */
.login-wrapper {
  width: 100%;
  padding: 20px;
}

/* Login Card */
.login-container {
  max-width: 400px;
  margin: auto;
  padding: 30px;
  border-radius: 16px;
  color: #0f2640;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);

}

/* Header */
.login-container h2 {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 600;
}

/* Input Fields */
.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.8);
}


/* Button */
.button-group button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #0f2640;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.login-link {
  display: block;
  text-align: center;
  margin-top: 20px; /* Tambahkan jarak ke atas */
  font-size: 14px;
  color: #0f2640;
}

.button-group button:hover {
  background-color: #395e87;
}

/* Additional Text */
p {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

p a {
  color: #0f2640;
  text-decoration: none;
}

p a:hover {
  text-decoration: underline;
}
