/* Font dan Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  /*font-family: 'Inter', sans-serif;*/
  /*background-color: #f4f6f8;*/
  /*display: flex;*/
  /*justify-content: center;*/
  /*align-items: center;*/
  /*min-height: 70vh;*/
  /*overflow: hidden;*/
       margin: 0;
  font-family: 'Inter', sans-serif;
  background-image: url('https://static1.xdaimages.com/wordpress/wp-content/uploads/2023/09/img32.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  
  /* Pastikan tinggi body penuh layar */
  height: 100vh; /* atau min-height: 100vh */
  
  /* Flexbox untuk konten */
  display: flex;
  justify-content: center;
  align-items: center;
  
  overflow: hidden;
}

/* Wrapper login */
.login-wrapper {
  /*padding: 24px;*/
  /*width: 100%;*/
  /*max-width: 400px;*/
  /*position: relative;*/
  /*z-index: 10;*/
  padding: 24px;
  width: 100%;
  max-width: 400px;
  position: relative; /* penting agar z-index bekerja */
  z-index: 10;
  top: -96px; /* naik ke atas secara posisi */
  
}

/* Card Login */
.login-card {
  /*position: relative;*/
  /*background: rgba(255, 255, 255, 0.85);*/
  /*backdrop-filter: blur(12px);*/
  /*border: 1px solid rgba(200, 200, 200, 0.3);*/
  /*border-radius: 24px;*/
  /*box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);*/
  /*padding: 0 32px 32px;*/
  /*overflow: hidden;*/
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  /*backdrop-filter: blur(12px);*/
  border: 0px solid rgb(174, 250, 188);
  border-radius: 24px;
  box-shadow: 0 12px 24px rgba(34, 19, 19, 0.64);
  padding: 0 32px 32px;
  overflow: hidden;
}

/* Curved Top (Poni) */
.curved-top {
  /*background-color: #ffffff;*/
  /*border-top-left-radius: 24px;*/
  /*border-top-right-radius: 24px;*/
  /*padding: 32px 24px 16px;*/
  /*margin: -32px -32px 0;*/
  /*text-align: center;*/
  /*position: relative;*/
  /*z-index: 2;*/
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-bottom-left-radius: 72px;
  border-bottom-right-radius: 72px;
  padding: 61px 41px 8px;
  margin: -52px -32px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

}

.title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.subtitle {
  font-size: 14px;
  color: #555;
}

/* Input Group */
.input-group {
  margin-top: 16px;
}
.input-group label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}
.input-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  background-color: #fff;
  transition: border-color 0.2s;
}
.input-group input:focus {
  border-color: #007bff;
  outline: none;
}

/* Tombol Login */
.login-button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
}
.login-button:hover {
  background-color: #0056c6;
}

/* Footer */
.form-footer {
  margin-top: 20px;
  font-size: 13px;
  color: #555;
  text-align: center;
}
.form-footer a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}
.form-footer a:hover {
  text-decoration: underline;
}

/* Dekoratif Shapes */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 1;
}

.green-shape {
  width: 200px;
  height: 200px;
  background: #00d084;
  top: 30%;
  left: calc(50% - 240px);
}

.blue-shape {
  width: 180px;
  height: 180px;
  background: #0099ff;
  bottom: 42%;
  right: calc(50% - 240px);
}

/* Background JPG pada form */
.login-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url('6223859.jpg'); /* Ganti dengan path gambar kamu */
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 1;
}

/* Pastikan form tetap di atas background image */
form, .form-footer {
  position: relative;
  z-index: 3;
}
