@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

/* LOGIN STYLE */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}

.login-page {
  background-color: #0b0f19;
}

.text-center h2 {
  font-weight: 700;
}

.login {
  height: 100vh;
}

/* Kotak besar di tengah */
.login-box {
  background-color: white;
  width: 80%;
  max-width: 1000px;
  height: 600px;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Kiri: form */
.login-left {
  background-color: white;
  color: #2c274c;
}

/* Kanan: gambar */
.login-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tombol login */
.btn-login {
  background-color: #2c274c;
  border: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.btn-login:hover {
  background: #30572d;
  color: white;
}
