.form-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: none; /* Hilangkan border garis biasa */
  margin-top: 20px;
}

.form-title {
  color: #254688;
  font-weight: 700;
  font-size: 28px;
  margin: 0;
}

.btn-save-custom {
  color: #d32f2f; /* Merah */
  font-weight: 700;
  font-size: 18px;
  background: none;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-save-custom:hover {
  color: #b71c1c;
  opacity: 0.8;
}

.form-label-custom {
  color: #254688;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  border: 1px solid #cdd7e9;
  border-radius: 8px;
  padding: 10px 15px;
  color: #333;
  width: 100%;
  margin-bottom: 20px;
}

.form-control-custom:focus {
  border-color: #254688;
  box-shadow: 0 0 0 3px rgba(37, 70, 136, 0.1);
  outline: none;
}

.form-control-custom[readonly],
.form-control-custom[disabled] {
  background-color: #f8f9fa;
  color: #6c757d;
}
