/* shared forms.css */

/* Labels */
.wc-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(200, 215, 255, 0.75);
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 6px;
}

/* Inputs */
.wc-input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  color: #eaf0ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.wc-input::placeholder {
  color: rgba(234, 240, 255, 0.5);
}

.wc-input:focus {
  outline: none;
  border-color: #00eaff;
  box-shadow: 0 0 12px rgba(0, 234, 255, 0.32);
}