
/* Header dengan image + overlay biru */
.login-header {
  height: 110px;
  background: url('../img/jpg/backlayer-grey.jpg') center/cover no-repeat;
  position: relative;
}

.login-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(62,133,221,0.8); /* overlay biru */
}

.login-header h5 {
  z-index: 2;
}

/* Input styling biar mirip */
.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 8px 14px;
}

.modal-content {
  border-radius: 16px !important;
}

/* #loginForm .input-group {
  border-radius: 50px !important;
  
} */

/* Wrapper */
.custom-input {
  position: relative;
  display: flex;
  align-items: center;
  background: #ECF4FF;
  border-radius: 50px;
  padding: 6px 12px;
  transition: all 0.3s ease;
}

/* Input field */
.custom-input input {
  border: none;
  outline: none;
  flex: 1;
  background: transparent;
  padding: 4px 12px;
  font-size: 14px;
}

/* Icon kanan */
.custom-input .icon {
  position: absolute;
  right: 15px;
  color: #6c757d;
  font-size: 16px;
}

/* Hover & Focus */
.custom-input:hover,
.custom-input:focus-within {
  background: #fff;
  box-shadow: 0 0 8px rgba(62,133,221,0.4);
}

