* {
  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 */
.register-wrapper {
  width: 100%;
  padding: 20px;
}

/* Container mirip login */
.register-container {
  max-width: 400px;
  margin: auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  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);
  color: #0f2640;
}

/* Judul */
.register-container h2 {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 600;
}

/* Input group */
.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.85);
}

/* Tombol */
.button-group {
  text-align: center;
  margin-bottom: 10px; /* spacing dari form ke p */
}

.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;
}

.button-group button:hover {
  background-color: #1a5aa3;
}

/* Teks tambahan login */
.login-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.login-link a {
  color: #0f2640;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Responsif */
@media (max-width: 767px) {
  .register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
}

.password-note {
  font-size: 12px;
  color: #555;
  margin-top: 4px;
  margin-left: 2px;
}