/* CreaIPTV — Pantalla de Activación */

#screen-activation {
  background: var(--bg-primary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.activation-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.activation-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.activation-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin: 0;
}

.activation-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.activation-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.activation-btn {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  font-weight: 700;
  background: var(--crea-teal);
  color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  margin-top: 4px;
}

.activation-btn:hover {
  background: var(--crea-mint);
}

.activation-btn:focus,
.activation-btn.focused {
  outline: 3px solid var(--accent-focus);
  outline-offset: 2px;
}

.activation-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.activation-error {
  background: rgba(232, 90, 90, 0.12);
  border: 1px solid rgba(232, 90, 90, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--accent-error);
  font-size: 16px; /* TV 10-foot: errores deben verse claramente */
  text-align: center;
}
