/* Subscribe page form styles (the card container is styled by layout.css .sub-card) */

.subscribe .sub-box { margin-top: 1rem; }

.subscribe label {
  display: block;
  margin: 10px 0 6px;
  color: #4b5563;
  font-weight: 500;
}

.subscribe input[type="text"],
.subscribe input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font: inherit;
}

.subscribe input[type="text"]:focus,
.subscribe input[type="email"]:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.subscribe button {
  margin-top: 12px;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.subscribe button:hover { background: #1e4fd4; }

.sub-msg { display: inline-block; margin-left: 10px; font-weight: 600; }
.sub-msg.ok  { color: #059669; }
.sub-msg.err { color: #b91c1c; }
