.employee-form-card {
  background: #fff;
  padding: 40px;
  width: 70%;
  margin-left: 200px;
}

/* Title */
.employee-form-card h2 {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 600;
}

/* Grid Layout */
.employee-form-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form Groups */
.employee-form-card .form-group {
  display: flex;
  flex-direction: column;
}

/* Labels */
.employee-form-card label {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}

/* Inputs & Textarea */
.employee-form-card input,
.employee-form-card textarea,
.employee-form-card select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
}

.employee-form-card textarea {
  resize: none;
  min-height: 80px;
}

/* Submit Button */
.employee-form-card .btn {
  padding: 10px 16px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.employee-form-card .btn-primary {
  background: #0c6ef0;
  color: #fff;
  grid-column: span 2; /* full width button */
}

.employee-form-card .btn-primary:hover {
  background: #0a58c5;
}
