html, body {
  height: 100%;
}

.left-panel {
  background-color: var(--bs-coffedark);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.left-panel h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.left-panel p {
  font-size: 1.1rem;
  max-width: 400px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--bs-coffedark);
}

.input-group-text {
  cursor: pointer;
}

/* Tambahan tampilan form login */
body {
  background-color: #f8f9fa; /* lembut */
}

.login-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}


.logo {
  width: 50px;
  height: 50px;
}

.btn-coffee {
  background-color: var(--bs-coffedark);
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-coffee:hover {
  background-color: #5a3e2b; /* darker shade */
}

/* Full height container */
.full-height {
  height: 100vh;
}
