/* Path: public/assets/css/style.css */

/* --- KHUSUS HALAMAN LOGIN --- */
.bg-login {
  background: #f4f7f6;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.btn-login {
  border-radius: 50px;
  padding: 12px;
  font-weight: bold;
  background: #2dce89;
  border: none;
  color: white; /* Tambahan agar teks putih */
}

.btn-login:hover {
  background: #2bb378;
  color: white;
}
