/* CCPA page */
.ccpa-content {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 2.25rem;
  width: 100%;
  border-radius: 0.5rem;
  background-color: #fff;
  padding: 1.75rem;
}

@media (min-width: 1024px) {
  .ccpa-content {
    width: 60%;
  }
}

.ccpa-content h1 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.ccpa-content p {
  margin: 0 0 1rem;
  font-size: .875rem;
  line-height: 1.25rem;
  color: #000;
}

.ccpa-content .request-type-label {
  font-weight: bold;
  margin: 0 0 0.4em;
  font-size: .875rem;
  line-height: 1.25rem;
  
}

.ccpa-content .checkbox-group {
  margin: 0 0 20px;
}

.ccpa-content .checkbox-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0.3em 0;
  cursor: pointer;
  font-size: .875rem;
  line-height: 1.25rem;
  color: #000;
}

.ccpa-content .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ccpa-content .form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.ccpa-content .form-field label {
  font-size: 14px;
  color: #555658;
  margin-bottom: 4px;
}

.ccpa-content input[type="text"],
.ccpa-content input[type="email"] {
  padding: 8px 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}

.ccpa-content input[type="text"]:focus,
.ccpa-content input[type="email"]:focus {
  outline: none;
  border-color: #94AED0;
  box-shadow: 0 0 0 2px rgba(148, 174, 208, 0.25);
}

.ccpa-content .form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 8px;
}

.ccpa-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ccpa-toast[hidden] {
  display: none;
}

.ccpa-toast--success {
  background: #388367;
}

.ccpa-toast--error {
  background: #b91c1c;
}

.ccpa-toast-icon {
  flex-shrink: 0;
  color: #fff;
  fill: #fff;
}

.ccpa-toast-text {
  flex: 1;
  font-size: 14px;
  font-family: var(--font-family);
}

.ccpa-toast-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 8px;
  opacity: 0.8;
}

.ccpa-toast-close:hover {
  opacity: 1;
}

.ccpa-content button[type="submit"] {
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  background: var(--color-navy);
  color: #fff;
  border: none;
  border-radius: 8px; /* rounded-lg */
  cursor: pointer;
  display: flex;
  justify-content: center;
  transition: opacity 0.15s;
}

.ccpa-content button[type="submit"]:hover {
  background: var(--color-navy);
  opacity: 0.85;
}

.ccpa-content button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ccpa-content a {
  color: #1a0dab;
}
