
/*************************************************
 * UNIFIED FORM & BUTTON STYLES
 * Single source of truth for all inputs, selects, textareas, and buttons
 *************************************************/

/* Form Inputs - Universal Styling */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="number"],
select,
textarea {
  border: 1px solid #ccc;
  background-color: #fff;
  color: #3b3b3e;
  padding: 8px 12px;
  height: 40px;
  line-height: 24px;
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}

input[type="text"]:focus,
input[type="search"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #D894CC;
  box-shadow: 0 0 0 1px rgba(216, 148, 204, 0.35);
}

textarea {
  height: auto;
  min-height: 80px;
  resize: vertical;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* Base Button Styling */
.btn,
button,
input[type="submit"],
input[type="button"] {
  display: inline-block;
  background: #3b3b3e;
  color: #fff;
  border: none;
  padding: 10px 20px;
  height: 40px;
  line-height: 20px;
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  box-sizing: border-box;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background: #2f2f31;
  color: #fff;
}

/* Primary Button */
.btn-primary {
  background: #D894CC;
  color: #fff;
}

.btn-primary:hover {
  background: #b57aa9;
  color: #fff;
}

/* Secondary Button */
.btn-secondary {
  background: #000;
  color: #fff;
}

.btn-secondary:hover {
  background: #333;
  color: #fff;
}