#pincode-checker {
  font-family: 'Segoe UI', sans-serif;
  max-width: 320px;
  margin-top: 20px;
}

.checker-label {
  font-size: 16px;
  font-weight: 500;
  margin-top: 0px;
	margin-bottom: 6px;
  display: block;
}

.checker-wrapper {
  display: flex;
}

#pincode-input {
  flex: 1;
  padding: 14px 12px; /* Balanced padding for height */
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

#check-btn {
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 14px 20px; /* Matches input height */
  border-radius: 0 6px 6px 0;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  box-sizing: border-box;
	margin-bottom:0em;
}

#check-btn:hover {
  background-color: #d81b60; /* Slight hover contrast */
}

#pincode-result {
  margin-top: 10px;
	margin-bottom: 16px;
  font-size: 14px;
  color: #333;
}